summaryrefslogtreecommitdiffstats
path: root/drivers/net
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2015-10-07 21:19:31 -0700
committerJoe Hershberger <joe.hershberger@ni.com>2015-10-29 14:05:49 -0500
commit17ecfa9b45db7964f6a20cd710a87decd2f2e1f5 (patch)
treef65b5219be35890f28489b061da9ed4b18117cfd /drivers/net
parent3e1949d77463b062a4f8d380128abb7854f4907b (diff)
downloadblackbird-obmc-uboot-17ecfa9b45db7964f6a20cd710a87decd2f2e1f5.tar.gz
blackbird-obmc-uboot-17ecfa9b45db7964f6a20cd710a87decd2f2e1f5.zip
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: Bin Meng <bmeng.cn@gmail.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/phy/phy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c
index d0b3e8523f..d7364ffc34 100644
--- a/drivers/net/phy/phy.c
+++ b/drivers/net/phy/phy.c
@@ -789,7 +789,7 @@ void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev)
{
/* Soft Reset the PHY */
phy_reset(phydev);
- if (phydev->dev) {
+ if (phydev->dev && phydev->dev != dev) {
printf("%s:%d is connected to %s. Reconnecting to %s\n",
phydev->bus->name, phydev->addr,
phydev->dev->name, dev->name);
OpenPOWER on IntegriCloud