diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2018-01-11 11:21:38 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-01-11 13:54:58 -0500 |
commit | ecb10288a370b439e3b4552adea40d22900b9f64 (patch) | |
tree | 6a7c9138fb34a7a4d1822e382b2258cddccfe9ee /drivers/net/ethernet/socionext | |
parent | d9f523723bc794e1851024958a6add303ba67b6c (diff) |
net: socionext: Fix error return code in netsec_netdev_open()
Fix to return error code -ENODEV from the of_phy_connect() error
handling case instead of 0, as done elsewhere in this function.
Fixes: 533dd11a12f6 ("net: socionext: Add Synquacer NetSec driver")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/socionext')
-rw-r--r-- | drivers/net/ethernet/socionext/netsec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/socionext/netsec.c b/drivers/net/ethernet/socionext/netsec.c index af47147dd656..6c263af86b8a 100644 --- a/drivers/net/ethernet/socionext/netsec.c +++ b/drivers/net/ethernet/socionext/netsec.c @@ -1293,6 +1293,7 @@ static int netsec_netdev_open(struct net_device *ndev) netsec_phy_adjust_link, 0, priv->phy_interface)) { netif_err(priv, link, priv->ndev, "missing PHY\n"); + ret = -ENODEV; goto err3; } } else { |