mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
lan78xx: Modify error messages
Modify the error messages when phy registration fails. Signed-off-by: Raghuram Chary J <raghuramchary.jallipalli@microchip.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e92258c761
commit
7670ed7a25
1 changed files with 2 additions and 2 deletions
|
@ -2100,14 +2100,14 @@ static struct phy_device *lan7801_phy_init(struct lan78xx_net *dev)
|
|||
ret = phy_register_fixup_for_uid(PHY_KSZ9031RNX, 0xfffffff0,
|
||||
ksz9031rnx_fixup);
|
||||
if (ret < 0) {
|
||||
netdev_err(dev->net, "fail to register fixup\n");
|
||||
netdev_err(dev->net, "Failed to register fixup for PHY_KSZ9031RNX\n");
|
||||
return NULL;
|
||||
}
|
||||
/* external PHY fixup for LAN8835 */
|
||||
ret = phy_register_fixup_for_uid(PHY_LAN8835, 0xfffffff0,
|
||||
lan8835_fixup);
|
||||
if (ret < 0) {
|
||||
netdev_err(dev->net, "fail to register fixup\n");
|
||||
netdev_err(dev->net, "Failed to register fixup for PHY_LAN8835\n");
|
||||
return NULL;
|
||||
}
|
||||
/* add more external PHY fixup here if needed */
|
||||
|
|
Loading…
Reference in a new issue