aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorDajun Jin <adajunjin@gmail.com>2020-03-02 20:24:21 -0800
committerDavid S. Miller <davem@davemloft.net>2020-03-03 19:01:51 -0800
commit209c65b61d94344522c41a83cd6ce51aac5fd0a4 (patch)
treed9ee62428ec1dd6d4a075704640601e7e6826834 /drivers
parentcxgb4: fix checks for max queues to allocate (diff)
downloadlinux-dev-209c65b61d94344522c41a83cd6ce51aac5fd0a4.tar.xz
linux-dev-209c65b61d94344522c41a83cd6ce51aac5fd0a4.zip
drivers/of/of_mdio.c:fix of_mdiobus_register()
When registers a phy_device successful, should terminate the loop or the phy_device would be registered in other addr. If there are multiple PHYs without reg properties, it will go wrong. Signed-off-by: Dajun Jin <adajunjin@gmail.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/of/of_mdio.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/of/of_mdio.c b/drivers/of/of_mdio.c
index 8270bbf505fb..9f982c0627a0 100644
--- a/drivers/of/of_mdio.c
+++ b/drivers/of/of_mdio.c
@@ -306,6 +306,7 @@ int of_mdiobus_register(struct mii_bus *mdio, struct device_node *np)
rc = of_mdiobus_register_phy(mdio, child, addr);
if (rc && rc != -ENODEV)
goto unregister;
+ break;
}
}
}