]> Git Repo - linux.git/commitdiff
net: socionext: Fix error return code in netsec_netdev_open()
authorWei Yongjun <[email protected]>
Thu, 11 Jan 2018 11:21:38 +0000 (11:21 +0000)
committerDavid S. Miller <[email protected]>
Thu, 11 Jan 2018 18:54:58 +0000 (13:54 -0500)
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 <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
drivers/net/ethernet/socionext/netsec.c

index af47147dd65652453fcb17db220308868d4f11fb..6c263af86b8adeccae1aa3feb925ed0d77b58954 100644 (file)
@@ -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 {
This page took 0.06131 seconds and 4 git commands to generate.