diff options
author | Rob Herring <robh@kernel.org> | 2023-03-14 23:13:09 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-03-16 20:43:14 +0300 |
commit | cc6d85c1cb5ccc04c594392339c81227abd1667d (patch) | |
tree | ceb0944d9689cbcd458bd6bad8316d7990b6302d /drivers/nfc/nfcmrvl/i2c.c | |
parent | 053fdaa841bd1af9fe9c2c30bba81119059aac95 (diff) | |
download | linux-cc6d85c1cb5ccc04c594392339c81227abd1667d.tar.xz |
nfc: mrvl: Use of_property_read_bool() for boolean properties
It is preferred to use typed property access functions (i.e.
of_property_read_<type> functions) rather than low-level
of_get_property/of_find_property functions for reading properties.
Convert reading boolean properties to of_property_read_bool().
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/nfc/nfcmrvl/i2c.c')
-rw-r--r-- | drivers/nfc/nfcmrvl/i2c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nfc/nfcmrvl/i2c.c b/drivers/nfc/nfcmrvl/i2c.c index e74342b0b728..164e2ab859fd 100644 --- a/drivers/nfc/nfcmrvl/i2c.c +++ b/drivers/nfc/nfcmrvl/i2c.c @@ -168,7 +168,7 @@ static int nfcmrvl_i2c_parse_dt(struct device_node *node, return ret; } - if (of_find_property(node, "i2c-int-falling", NULL)) + if (of_property_read_bool(node, "i2c-int-falling")) pdata->irq_polarity = IRQF_TRIGGER_FALLING; else pdata->irq_polarity = IRQF_TRIGGER_RISING; |