mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-25 00:52:45 -04:00
powerpc: 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(). Signed-off-by: Rob Herring <robh@kernel.org> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/20230310144659.1541127-1-robh@kernel.org
This commit is contained in:
committed by
Michael Ellerman
parent
857d423c74
commit
4d57e3515e
@@ -132,7 +132,7 @@ static int __init tsi108_eth_of_init(void)
|
||||
* driver itself to phylib and use a non-misleading
|
||||
* name for the workaround flag - it's not actually to
|
||||
* do with the model of PHY in use */
|
||||
if (of_get_property(phy, "txc-rxc-delay-disable", NULL))
|
||||
if (of_property_read_bool(phy, "txc-rxc-delay-disable"))
|
||||
tsi_eth_data.phy_type = TSI108_PHY_BCM54XX;
|
||||
of_node_put(phy);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user