net: phy: micrel: Fix double spaces inside lan8814_config_intr
authorHoratiu Vultur <horatiu.vultur@microchip.com>
Wed, 21 Sep 2022 06:54:44 +0000 (08:54 +0200)
committerJakub Kicinski <kuba@kernel.org>
Thu, 22 Sep 2022 19:08:28 +0000 (12:08 -0700)
Inside the function lan8814_config_intr, there are double spaces when
assigning the return value of phy_write to err.

Suggested-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Link: https://lore.kernel.org/r/20220921065444.637067-1-horatiu.vultur@microchip.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/phy/micrel.c

index c225df5..f5c3c5c 100644 (file)
@@ -2874,9 +2874,9 @@ static int lan8814_config_intr(struct phy_device *phydev)
                if (err)
                        return err;
 
-               err =  phy_write(phydev, LAN8814_INTC, LAN8814_INT_LINK);
+               err = phy_write(phydev, LAN8814_INTC, LAN8814_INT_LINK);
        } else {
-               err =  phy_write(phydev, LAN8814_INTC, 0);
+               err = phy_write(phydev, LAN8814_INTC, 0);
                if (err)
                        return err;