]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
net: smsc911x: Remove multiple exit points from smsc911x_open
authorJeremy Linton <jeremy.linton@arm.com>
Thu, 1 Sep 2016 20:15:06 +0000 (15:15 -0500)
committerDavid S. Miller <davem@davemloft.net>
Sat, 3 Sep 2016 00:28:33 +0000 (17:28 -0700)
Rework the error handling in smsc911x open in preparation
for the mdio startup being moved here.

Signed-off-by: Jeremy Linton <jeremy.linton@arm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/smsc/smsc911x.c

index ca3134540d2d5bf33b5faebb8693ff9c8d79421f..c9b0e055c62f0a70f3b7dfd123d37340babc1887 100644 (file)
@@ -1520,17 +1520,20 @@ static int smsc911x_open(struct net_device *dev)
        unsigned int timeout;
        unsigned int temp;
        unsigned int intcfg;
+       int retval;
 
        /* if the phy is not yet registered, retry later*/
        if (!dev->phydev) {
                SMSC_WARN(pdata, hw, "phy_dev is NULL");
-               return -EAGAIN;
+               retval = -EAGAIN;
+               goto out;
        }
 
        /* Reset the LAN911x */
-       if (smsc911x_soft_reset(pdata)) {
+       retval = smsc911x_soft_reset(pdata);
+       if (retval) {
                SMSC_WARN(pdata, hw, "soft reset failed");
-               return -EIO;
+               goto out;
        }
 
        smsc911x_reg_write(pdata, HW_CFG, 0x00050000);
@@ -1600,7 +1603,8 @@ static int smsc911x_open(struct net_device *dev)
        if (!pdata->software_irq_signal) {
                netdev_warn(dev, "ISR failed signaling test (IRQ %d)\n",
                            dev->irq);
-               return -ENODEV;
+               retval = -ENODEV;
+               goto out;
        }
        SMSC_TRACE(pdata, ifup, "IRQ handler passed test using IRQ %d",
                   dev->irq);
@@ -1646,6 +1650,8 @@ static int smsc911x_open(struct net_device *dev)
 
        netif_start_queue(dev);
        return 0;
+out:
+       return retval;
 }
 
 /* Entry point for stopping the interface */