|
@@ -80,14 +80,10 @@ static int lxt970_ack_interrupt(struct phy_device *phydev)
|
|
|
|
|
|
static int lxt970_config_intr(struct phy_device *phydev)
|
|
|
{
|
|
|
- int err;
|
|
|
-
|
|
|
if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
|
|
|
- err = phy_write(phydev, MII_LXT970_IER, MII_LXT970_IER_IEN);
|
|
|
+ return phy_write(phydev, MII_LXT970_IER, MII_LXT970_IER_IEN);
|
|
|
else
|
|
|
- err = phy_write(phydev, MII_LXT970_IER, 0);
|
|
|
-
|
|
|
- return err;
|
|
|
+ return phy_write(phydev, MII_LXT970_IER, 0);
|
|
|
}
|
|
|
|
|
|
static int lxt970_config_init(struct phy_device *phydev)
|
|
@@ -112,14 +108,10 @@ static int lxt971_ack_interrupt(struct phy_device *phydev)
|
|
|
|
|
|
static int lxt971_config_intr(struct phy_device *phydev)
|
|
|
{
|
|
|
- int err;
|
|
|
-
|
|
|
if (phydev->interrupts == PHY_INTERRUPT_ENABLED)
|
|
|
- err = phy_write(phydev, MII_LXT971_IER, MII_LXT971_IER_IEN);
|
|
|
+ return phy_write(phydev, MII_LXT971_IER, MII_LXT971_IER_IEN);
|
|
|
else
|
|
|
- err = phy_write(phydev, MII_LXT971_IER, 0);
|
|
|
-
|
|
|
- return err;
|
|
|
+ return phy_write(phydev, MII_LXT971_IER, 0);
|
|
|
}
|
|
|
|
|
|
/*
|