Skip to content
Snippets Groups Projects
Commit 17ecfa9b authored by Bin Meng's avatar Bin Meng Committed by Joe Hershberger
Browse files

net: phy: Test previous phydev->dev against new mac dev


In phy_connect_dev(), if the phy device has an accociated mac device
before, a warning message will be printed. But we should test the
old device against the new one, if they are actually the same one,
don't print the warning message.

Signed-off-by: default avatarBin Meng <bmeng.cn@gmail.com>
Acked-by: default avatarJoe Hershberger <joe.hershberger@ni.com>
parent 3e1949d7
No related branches found
No related tags found
No related merge requests found
...@@ -789,7 +789,7 @@ void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev) ...@@ -789,7 +789,7 @@ void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev)
{ {
/* Soft Reset the PHY */ /* Soft Reset the PHY */
phy_reset(phydev); phy_reset(phydev);
if (phydev->dev) { if (phydev->dev && phydev->dev != dev) {
printf("%s:%d is connected to %s. Reconnecting to %s\n", printf("%s:%d is connected to %s. Reconnecting to %s\n",
phydev->bus->name, phydev->addr, phydev->bus->name, phydev->addr,
phydev->dev->name, dev->name); phydev->dev->name, dev->name);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment