projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b5cdae3
)
drivers: net: xgene-v2: Fix error return code in xge_mdio_config()
author
Wei Yongjun
<weiyongjun1@huawei.com>
Tue, 25 Apr 2017 11:36:50 +0000
(11:36 +0000)
committer
David S. Miller
<davem@davemloft.net>
Tue, 25 Apr 2017 17:48:06 +0000
(13:48 -0400)
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: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/apm/xgene-v2/mdio.c
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/apm/xgene-v2/mdio.c
b/drivers/net/ethernet/apm/xgene-v2/mdio.c
index a583c6a9a5eae7b68a78de9456034be714d97aa7..f5fe3bb2e59d9a9eecfcfb358af0a15785d69cfa 100644
(file)
--- a/
drivers/net/ethernet/apm/xgene-v2/mdio.c
+++ b/
drivers/net/ethernet/apm/xgene-v2/mdio.c
@@
-135,6
+135,7
@@
int xge_mdio_config(struct net_device *ndev)
phydev = phy_find_first(mdio_bus);
if (!phydev) {
dev_err(dev, "no PHY found\n");
+ ret = -ENODEV;
goto err;
}
phydev = phy_connect(ndev, phydev_name(phydev),