net phylib: Remove unnecessary condition check in phy
authorBalakumaran Kannan <kumaran.4353@gmail.com>
Wed, 9 Apr 2014 03:33:45 +0000 (09:03 +0530)
committerDavid S. Miller <davem@davemloft.net>
Wed, 9 Apr 2014 17:03:53 +0000 (13:03 -0400)
This condition check makes no difference in the code flow since 3.10

Signed-off-by: Balakumaran Kannan <kumaran.4353@gmail.com>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/phy/phy.c

index 1d788f1..1b6d09a 100644 (file)
@@ -756,12 +756,8 @@ void phy_state_machine(struct work_struct *work)
                        netif_carrier_on(phydev->attached_dev);
                        phydev->adjust_link(phydev->attached_dev);
 
-               } else if (0 == phydev->link_timeout--) {
+               } else if (0 == phydev->link_timeout--)
                        needs_aneg = 1;
-                       /* If we have the magic_aneg bit, we try again */
-                       if (phydev->drv->flags & PHY_HAS_MAGICANEG)
-                               break;
-               }
                break;
        case PHY_NOLINK:
                err = phy_read_status(phydev);