lxt: simplify lxt970_config_init()

This function declares the 'err' local variable for no good reason, get rid
of it.

Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Sergei Shtylyov 2016-05-14 02:09:07 +03:00 коммит произвёл David S. Miller
Родитель 04e6233d57
Коммит c8396d84c7
1 изменённых файлов: 1 добавлений и 5 удалений

Просмотреть файл

@ -88,11 +88,7 @@ static int lxt970_config_intr(struct phy_device *phydev)
static int lxt970_config_init(struct phy_device *phydev)
{
int err;
err = phy_write(phydev, MII_LXT970_CONFIG, 0);
return err;
return phy_write(phydev, MII_LXT970_CONFIG, 0);
}