phy: add phydev_name() wrapper
Add a phydev_name() function, to help with moving some structure members from phy_device. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
72ba48be3e
commit
84eff6d194
@@ -558,7 +558,7 @@ static int au1000_mii_probe(struct net_device *dev)
|
||||
/* now we are supposed to have a proper phydev, to attach to... */
|
||||
BUG_ON(phydev->attached_dev);
|
||||
|
||||
phydev = phy_connect(dev, dev_name(&phydev->dev),
|
||||
phydev = phy_connect(dev, phydev_name(phydev),
|
||||
&au1000_adjust_link, PHY_INTERFACE_MODE_MII);
|
||||
|
||||
if (IS_ERR(phydev)) {
|
||||
@@ -585,7 +585,7 @@ static int au1000_mii_probe(struct net_device *dev)
|
||||
|
||||
netdev_info(dev, "attached PHY driver [%s] "
|
||||
"(mii_bus:phy_addr=%s, irq=%d)\n",
|
||||
phydev->drv->name, dev_name(&phydev->dev), phydev->irq);
|
||||
phydev->drv->name, phydev_name(phydev), phydev->irq);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user