[PATCH net-next] net: phy: micrel: Fix double spaces inside lan8814_config_intr

Horatiu Vultur posted 1 patch 3 years, 6 months ago
drivers/net/phy/micrel.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH net-next] net: phy: micrel: Fix double spaces inside lan8814_config_intr
Posted by Horatiu Vultur 3 years, 6 months ago
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>
---
 drivers/net/phy/micrel.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/phy/micrel.c b/drivers/net/phy/micrel.c
index c225df56b7d26..f5c3c5c2fe11f 100644
--- a/drivers/net/phy/micrel.c
+++ b/drivers/net/phy/micrel.c
@@ -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;
 
-- 
2.33.0
Re: [PATCH net-next] net: phy: micrel: Fix double spaces inside lan8814_config_intr
Posted by patchwork-bot+netdevbpf@kernel.org 3 years, 6 months ago
Hello:

This patch was applied to netdev/net-next.git (master)
by Jakub Kicinski <kuba@kernel.org>:

On Wed, 21 Sep 2022 08:54:44 +0200 you wrote:
> 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>
> ---
>  drivers/net/phy/micrel.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Here is the summary with links:
  - [net-next] net: phy: micrel: Fix double spaces inside lan8814_config_intr
    https://git.kernel.org/netdev/net-next/c/f8b2cce430d9

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
Re: [PATCH net-next] net: phy: micrel: Fix double spaces inside lan8814_config_intr
Posted by Andrew Lunn 3 years, 6 months ago
On Wed, Sep 21, 2022 at 08:54:44AM +0200, Horatiu Vultur wrote:
> 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>

    Andrew