Message ID | 1622024648-33438-1-git-send-email-jiapeng.chong@linux.alibaba.com |
---|---|
State | New |
Headers | show |
Series | drivers/net/sungem: Fix inconsistent indenting | expand |
On Wed, 26 May 2021 18:24:08 +0800 Jiapeng Chong wrote: > Eliminate the follow smatch warning: > > drivers/net/sungem_phy.c:412 genmii_read_link() warn: inconsistent > indenting. > > Reported-by: Abaci Robot <abaci@linux.alibaba.com> > Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> > --- > drivers/net/sungem_phy.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/net/sungem_phy.c b/drivers/net/sungem_phy.c > index 291fa44..4daac5f 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) Do you have any statistics on how many such patches we'd need to apply to make the kernel free for such warning? If it's too many it's probably not worth it, this patch for example has net zero effect on readability.
diff --git a/drivers/net/sungem_phy.c b/drivers/net/sungem_phy.c index 291fa44..4daac5f 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)
Eliminate the follow smatch warning: drivers/net/sungem_phy.c:412 genmii_read_link() warn: inconsistent indenting. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> --- drivers/net/sungem_phy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)