Skip to content
Snippets Groups Projects
Commit 5e1fc7c5 authored by Wei Yongjun's avatar Wei Yongjun Committed by David S. Miller
Browse files

drivers: net: xgene-v2: Fix error return code in xge_mdio_config()


Fix to return error code -ENODEV from the no PHY found error
handling case instead of 0, as done elsewhere in this function.

Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b5cdae32
No related branches found
No related tags found
No related merge requests found
...@@ -135,6 +135,7 @@ int xge_mdio_config(struct net_device *ndev) ...@@ -135,6 +135,7 @@ int xge_mdio_config(struct net_device *ndev)
phydev = phy_find_first(mdio_bus); phydev = phy_find_first(mdio_bus);
if (!phydev) { if (!phydev) {
dev_err(dev, "no PHY found\n"); dev_err(dev, "no PHY found\n");
ret = -ENODEV;
goto err; goto err;
} }
phydev = phy_connect(ndev, phydev_name(phydev), phydev = phy_connect(ndev, phydev_name(phydev),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment