diff options
author | Jean Sacren <sakiwit@gmail.com> | 2021-11-08 09:59:41 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-11-09 14:45:54 +0300 |
commit | 54f0bad6686cdc50a3f4c5f7c4252c5018511459 (patch) | |
tree | 7dd74de88c13fe88c9c1dd646c14ee754a3ca7de /drivers/net | |
parent | c45231a7668d6b632534f692b10592ea375b55b0 (diff) | |
download | linux-54f0bad6686cdc50a3f4c5f7c4252c5018511459.tar.xz |
net: sungem_phy: fix code indentation
Remove extra space in front of the return statement.
Fixes: eb5b5b2ff96e ("sungem_phy: support bcm5461 phy, autoneg.")
Signed-off-by: Jean Sacren <sakiwit@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/sungem_phy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sungem_phy.c b/drivers/net/sungem_phy.c index 291fa449993f..4daac5fda073 100644 --- a/drivers/net/sungem_phy.c +++ b/drivers/net/sungem_phy.c @@ -409,7 +409,7 @@ static int genmii_read_link(struct mii_phy *phy) * though magic-aneg shouldn't prevent this case from occurring */ - return 0; + return 0; } static int generic_suspend(struct mii_phy* phy) |