提交 24f28dde 编写于 作者: D Daniel Mack 提交者: David S. Miller

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: NDaniel Mack <zonque@gmail.com>
Reviewed-by: NFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 86f6cf41
...@@ -123,7 +123,7 @@ int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np) ...@@ -123,7 +123,7 @@ int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
const __be32 *paddr; const __be32 *paddr;
u32 addr; u32 addr;
bool scanphys = false; bool scanphys = false;
int rc, i, len; int rc, i;
/* Mask out all PHYs from auto probing. Instead the PHYs listed in /* Mask out all PHYs from auto probing. Instead the PHYs listed in
* the device tree are populated after the bus has been registered */ * 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,7 +160,7 @@ int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
/* auto scan for PHYs with empty reg property */ /* auto scan for PHYs with empty reg property */
for_each_available_child_of_node(np, child) { for_each_available_child_of_node(np, child) {
/* Skip PHYs with reg property set */ /* Skip PHYs with reg property set */
paddr = of_get_property(child, "reg", &len); paddr = of_get_property(child, "reg", NULL);
if (paddr) if (paddr)
continue; continue;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册