]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
net: phy: micrel: refactor led-mode error handling
authorJohan Hovold <johan@kernel.org>
Tue, 11 Nov 2014 19:00:13 +0000 (20:00 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 12 Nov 2014 18:55:36 +0000 (13:55 -0500)
Refactor led-mode error handling.

Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/micrel.c

index 1b3985cdc64c0a8eddb762d3db33440b0830ae52..ec9ce35e934b5051cbc9724a468bf2f6ef55e9ee 100644 (file)
@@ -179,14 +179,19 @@ static int kszphy_setup_led(struct phy_device *phydev,
        }
 
        temp = phy_read(phydev, reg);
-       if (temp < 0)
-               return temp;
+       if (temp < 0) {
+               rc = temp;
+               goto out;
+       }
 
        temp &= ~(3 << shift);
        temp |= val << shift;
        rc = phy_write(phydev, reg, temp);
+out:
+       if (rc < 0)
+               dev_err(&phydev->dev, "failed to set led mode\n");
 
-       return rc < 0 ? rc : 0;
+       return rc;
 }
 
 /* Disable PHY address 0 as the broadcast address, so that it can be used as a
@@ -223,9 +228,7 @@ static int ksz8021_config_init(struct phy_device *phydev)
 {
        int rc;
 
-       rc = kszphy_setup_led(phydev, 0x1f, 4);
-       if (rc)
-               dev_err(&phydev->dev, "failed to set led mode\n");
+       kszphy_setup_led(phydev, 0x1f, 4);
 
        rc = ksz_config_flags(phydev);
        if (rc < 0)
@@ -240,9 +243,7 @@ static int ks8051_config_init(struct phy_device *phydev)
 {
        int rc;
 
-       rc = kszphy_setup_led(phydev, 0x1f, 4);
-       if (rc)
-               dev_err(&phydev->dev, "failed to set led mode\n");
+       kszphy_setup_led(phydev, 0x1f, 4);
 
        rc = ksz_config_flags(phydev);
        return rc < 0 ? rc : 0;