summaryrefslogtreecommitdiff
path: root/drivers/nfc/nfcmrvl/nfcmrvl.h
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2023-03-14 23:13:09 +0300
committerDavid S. Miller <davem@davemloft.net>2023-03-16 20:43:14 +0300
commitcc6d85c1cb5ccc04c594392339c81227abd1667d (patch)
treeceb0944d9689cbcd458bd6bad8316d7990b6302d /drivers/nfc/nfcmrvl/nfcmrvl.h
parent053fdaa841bd1af9fe9c2c30bba81119059aac95 (diff)
downloadlinux-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/nfcmrvl.h')
-rw-r--r--drivers/nfc/nfcmrvl/nfcmrvl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/nfc/nfcmrvl/nfcmrvl.h b/drivers/nfc/nfcmrvl/nfcmrvl.h
index 0f22b3233f73..f61a99e553db 100644
--- a/drivers/nfc/nfcmrvl/nfcmrvl.h
+++ b/drivers/nfc/nfcmrvl/nfcmrvl.h
@@ -56,16 +56,16 @@ struct nfcmrvl_platform_data {
/* GPIO that is wired to RESET_N signal */
int reset_n_io;
/* Tell if transport is muxed in HCI one */
- unsigned int hci_muxed;
+ bool hci_muxed;
/*
* UART specific
*/
/* Tell if UART needs flow control at init */
- unsigned int flow_control;
+ bool flow_control;
/* Tell if firmware supports break control for power management */
- unsigned int break_control;
+ bool break_control;
/*