aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of
diff options
context:
space:
mode:
authorDaniel Mack <zonque@gmail.com>2014-05-24 03:34:27 -0400
committerDavid S. Miller <davem@davemloft.net>2014-05-29 18:23:29 -0400
commit24f28dde5bed3b6322003dca903ebf7732efa550 (patch)
tree00ef5d250678eca0ae539dca4a10d2d6de5334d9 /drivers/of
parent86f6cf41272de9d6ffa05ab46028b15d160a6f3e (diff)
net: of_mdio: don't store the length of a property if we don't need to
of_get_property() can be called with NULL as 2nd argument if the caller is not interested in the length of a property. Use that here so we can get rid of a variable. Signed-off-by: Daniel Mack <zonque@gmail.com> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/of')
-rw-r--r--drivers/of/of_mdio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/of/of_mdio.c b/drivers/of/of_mdio.c
index 7c8c142e4eb8..2fe922bfade8 100644
--- a/drivers/of/of_mdio.c
+++ b/drivers/of/of_mdio.c
@@ -123,7 +123,7 @@ int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
123 const __be32 *paddr; 123 const __be32 *paddr;
124 u32 addr; 124 u32 addr;
125 bool scanphys = false; 125 bool scanphys = false;
126 int rc, i, len; 126 int rc, i;
127 127
128 /* Mask out all PHYs from auto probing. Instead the PHYs listed in 128 /* Mask out all PHYs from auto probing. Instead the PHYs listed in
129 * the device tree are populated after the bus has been registered */ 129 * the device tree are populated after the bus has been registered */
@@ -160,7 +160,7 @@ int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
160 /* auto scan for PHYs with empty reg property */ 160 /* auto scan for PHYs with empty reg property */
161 for_each_available_child_of_node(np, child) { 161 for_each_available_child_of_node(np, child) {
162 /* Skip PHYs with reg property set */ 162 /* Skip PHYs with reg property set */
163 paddr = of_get_property(child, "reg", &len); 163 paddr = of_get_property(child, "reg", NULL);
164 if (paddr) 164 if (paddr)
165 continue; 165 continue;
166 166