mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-14 05:12:17 +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
@ -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…
x
Reference in New Issue
Block a user