netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [net-next:master 217/233] drivers/net/phy/mscc.c:1683:3-4: Unneeded semicolon
@ 2019-11-15 22:38 kbuild test robot
  2019-11-15 22:38 ` [PATCH] mscc.c: fix semicolon.cocci warnings kbuild test robot
  0 siblings, 1 reply; 4+ messages in thread
From: kbuild test robot @ 2019-11-15 22:38 UTC (permalink / raw)
  To: Bryan Whitehead; +Cc: kbuild-all, netdev, Andrew Lunn

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git master
head:   a98cdaf73e32d1538cc225464fcf61310749471e
commit: 75a1ccfe6c726ba33a2f9859d39deb2eba620583 [217/233] mscc.c: Add support for additional VSC PHYs

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>


coccinelle warnings: (new ones prefixed by >>)

>> drivers/net/phy/mscc.c:1683:3-4: Unneeded semicolon

Please review and possibly fold the followup patch.

---
0-DAY kernel test infrastructure                 Open Source Technology Center
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org Intel Corporation

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] mscc.c: fix semicolon.cocci warnings
  2019-11-15 22:38 [net-next:master 217/233] drivers/net/phy/mscc.c:1683:3-4: Unneeded semicolon kbuild test robot
@ 2019-11-15 22:38 ` kbuild test robot
  2019-11-16  1:04   ` Andrew Lunn
  2019-11-16 21:13   ` David Miller
  0 siblings, 2 replies; 4+ messages in thread
From: kbuild test robot @ 2019-11-15 22:38 UTC (permalink / raw)
  To: Bryan Whitehead
  Cc: kbuild-all, netdev, Andrew Lunn, Florian Fainelli,
	Heiner Kallweit, linux-kernel

From: kbuild test robot <lkp@intel.com>

drivers/net/phy/mscc.c:1683:3-4: Unneeded semicolon


 Remove unneeded semicolon.

Generated by: scripts/coccinelle/misc/semicolon.cocci

Fixes: 75a1ccfe6c72 ("mscc.c: Add support for additional VSC PHYs")
CC: Bryan Whitehead <Bryan.Whitehead@microchip.com>
Signed-off-by: kbuild test robot <lkp@intel.com>
---

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git master
head:   a98cdaf73e32d1538cc225464fcf61310749471e
commit: 75a1ccfe6c726ba33a2f9859d39deb2eba620583 [217/233] mscc.c: Add support for additional VSC PHYs

 mscc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/net/phy/mscc.c
+++ b/drivers/net/phy/mscc.c
@@ -1680,7 +1680,7 @@ static int vsc8584_config_init(struct ph
 		default:
 			ret = -EINVAL;
 			break;
-		};
+		}
 
 		if (ret)
 			goto err;

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] mscc.c: fix semicolon.cocci warnings
  2019-11-15 22:38 ` [PATCH] mscc.c: fix semicolon.cocci warnings kbuild test robot
@ 2019-11-16  1:04   ` Andrew Lunn
  2019-11-16 21:13   ` David Miller
  1 sibling, 0 replies; 4+ messages in thread
From: Andrew Lunn @ 2019-11-16  1:04 UTC (permalink / raw)
  To: kbuild test robot
  Cc: Bryan Whitehead, kbuild-all, netdev, Florian Fainelli,
	Heiner Kallweit, linux-kernel

On Sat, Nov 16, 2019 at 06:38:34AM +0800, kbuild test robot wrote:
> From: kbuild test robot <lkp@intel.com>
> 
> drivers/net/phy/mscc.c:1683:3-4: Unneeded semicolon
> 
> 
>  Remove unneeded semicolon.
> 
> Generated by: scripts/coccinelle/misc/semicolon.cocci
> 
> Fixes: 75a1ccfe6c72 ("mscc.c: Add support for additional VSC PHYs")
> CC: Bryan Whitehead <Bryan.Whitehead@microchip.com>
> Signed-off-by: kbuild test robot <lkp@intel.com>

Reviewed-by: Andrew Lunn <andrew@lunn.ch>

    Andrew

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] mscc.c: fix semicolon.cocci warnings
  2019-11-15 22:38 ` [PATCH] mscc.c: fix semicolon.cocci warnings kbuild test robot
  2019-11-16  1:04   ` Andrew Lunn
@ 2019-11-16 21:13   ` David Miller
  1 sibling, 0 replies; 4+ messages in thread
From: David Miller @ 2019-11-16 21:13 UTC (permalink / raw)
  To: lkp
  Cc: Bryan.Whitehead, kbuild-all, netdev, andrew, f.fainelli,
	hkallweit1, linux-kernel

From: kbuild test robot <lkp@intel.com>
Date: Sat, 16 Nov 2019 06:38:34 +0800

> From: kbuild test robot <lkp@intel.com>
> 
> drivers/net/phy/mscc.c:1683:3-4: Unneeded semicolon
> 
> 
>  Remove unneeded semicolon.
> 
> Generated by: scripts/coccinelle/misc/semicolon.cocci
> 
> Fixes: 75a1ccfe6c72 ("mscc.c: Add support for additional VSC PHYs")
> CC: Bryan Whitehead <Bryan.Whitehead@microchip.com>
> Signed-off-by: kbuild test robot <lkp@intel.com>

Applied to net-next.

I don't know why but nothing the kbuild test robot posts ever makes it
into patchwork on ozlabs.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-11-16 21:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-15 22:38 [net-next:master 217/233] drivers/net/phy/mscc.c:1683:3-4: Unneeded semicolon kbuild test robot
2019-11-15 22:38 ` [PATCH] mscc.c: fix semicolon.cocci warnings kbuild test robot
2019-11-16  1:04   ` Andrew Lunn
2019-11-16 21:13   ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).