mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 11:32:04 +00:00
amd-xgbe: unwind on error in xgbe_mdio_register()
There is a typo here so we return directly instead of unwinding. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Tom Lendacky <thomas.lendacky@amd.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0aaf43f51d
commit
8fc908c3c3
@ -367,7 +367,7 @@ int xgbe_mdio_register(struct xgbe_prv_data *pdata)
|
||||
|
||||
if (!phydev->drv || (phydev->drv->phy_id == 0)) {
|
||||
netdev_err(netdev, "phy_id not valid\n");
|
||||
return -ENODEV;
|
||||
ret = -ENODEV;
|
||||
goto err_phy_connect;
|
||||
}
|
||||
DBGPR(" phy_connect_direct succeeded for PHY %s, link=%d\n",
|
||||
|
Loading…
Reference in New Issue
Block a user