Skip to content

Commit

Permalink
net: of_mdio: don't store the length of a property if we don't need to
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
zonque authored and davem330 committed May 29, 2014
1 parent 86f6cf4 commit 24f28dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/of/of_mdio.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
const __be32 *paddr;
u32 addr;
bool scanphys = false;
int rc, i, len;
int rc, i;

/* Mask out all PHYs from auto probing. Instead the PHYs listed in
* the device tree are populated after the bus has been registered */
Expand Down Expand Up @@ -160,7 +160,7 @@ int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
/* auto scan for PHYs with empty reg property */
for_each_available_child_of_node(np, child) {
/* Skip PHYs with reg property set */
paddr = of_get_property(child, "reg", &len);
paddr = of_get_property(child, "reg", NULL);
if (paddr)
continue;

Expand Down

0 comments on commit 24f28dd

Please sign in to comment.