All of lore.kernel.org
 help / color / mirror / Atom feed
* [linux-next:master 6966/7905] drivers/net/dsa/sja1105/sja1105_ethtool.c:481:11-12: Unneeded semicolon
@ 2020-05-10 12:26 kbuild test robot
  2020-05-10 12:26   ` kbuild test robot
  0 siblings, 1 reply; 5+ messages in thread
From: kbuild test robot @ 2020-05-10 12:26 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 663 bytes --]

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   30e2206e11ce27ae910cc0dab21472429e400a87
commit: ae1804de93f6f1626906567ae7deec8e0111259d [6966/7905] dsa: sja1105: dynamically allocate stats structure

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


coccinelle warnings: (new ones prefixed by >>)

>> drivers/net/dsa/sja1105/sja1105_ethtool.c:481:11-12: Unneeded semicolon

Please review and possibly fold the followup patch.

---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org

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

* [PATCH] dsa: sja1105: fix semicolon.cocci warnings
  2020-05-10 12:26 [linux-next:master 6966/7905] drivers/net/dsa/sja1105/sja1105_ethtool.c:481:11-12: Unneeded semicolon kbuild test robot
@ 2020-05-10 12:26   ` kbuild test robot
  0 siblings, 0 replies; 5+ messages in thread
From: kbuild test robot @ 2020-05-10 12:26 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: kbuild-all, Vladimir Oltean, Andrew Lunn, Vivien Didelot,
	Florian Fainelli, linux-kernel, netdev

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

drivers/net/dsa/sja1105/sja1105_ethtool.c:481:11-12: Unneeded semicolon


 Remove unneeded semicolon.

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

Fixes: ae1804de93f6 ("dsa: sja1105: dynamically allocate stats structure")
CC: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: kbuild test robot <lkp@intel.com>
---

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   30e2206e11ce27ae910cc0dab21472429e400a87
commit: ae1804de93f6f1626906567ae7deec8e0111259d [6966/7905] dsa: sja1105: dynamically allocate stats structure

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

--- a/drivers/net/dsa/sja1105/sja1105_ethtool.c
+++ b/drivers/net/dsa/sja1105/sja1105_ethtool.c
@@ -478,7 +478,7 @@ void sja1105_get_ethtool_stats(struct ds
 
 	if (priv->info->device_id == SJA1105E_DEVICE_ID ||
 	    priv->info->device_id == SJA1105T_DEVICE_ID)
-		goto out;;
+		goto out;
 
 	memset(data + k, 0, ARRAY_SIZE(sja1105pqrs_extra_port_stats) *
 			sizeof(u64));

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

* [PATCH] dsa: sja1105: fix semicolon.cocci warnings
@ 2020-05-10 12:26   ` kbuild test robot
  0 siblings, 0 replies; 5+ messages in thread
From: kbuild test robot @ 2020-05-10 12:26 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 1089 bytes --]

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

drivers/net/dsa/sja1105/sja1105_ethtool.c:481:11-12: Unneeded semicolon


 Remove unneeded semicolon.

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

Fixes: ae1804de93f6 ("dsa: sja1105: dynamically allocate stats structure")
CC: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: kbuild test robot <lkp@intel.com>
---

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git master
head:   30e2206e11ce27ae910cc0dab21472429e400a87
commit: ae1804de93f6f1626906567ae7deec8e0111259d [6966/7905] dsa: sja1105: dynamically allocate stats structure

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

--- a/drivers/net/dsa/sja1105/sja1105_ethtool.c
+++ b/drivers/net/dsa/sja1105/sja1105_ethtool.c
@@ -478,7 +478,7 @@ void sja1105_get_ethtool_stats(struct ds
 
 	if (priv->info->device_id == SJA1105E_DEVICE_ID ||
 	    priv->info->device_id == SJA1105T_DEVICE_ID)
-		goto out;;
+		goto out;
 
 	memset(data + k, 0, ARRAY_SIZE(sja1105pqrs_extra_port_stats) *
 			sizeof(u64));

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

* Re: [PATCH] dsa: sja1105: fix semicolon.cocci warnings
  2020-05-10 12:26   ` kbuild test robot
@ 2020-05-10 18:08     ` Jakub Kicinski
  -1 siblings, 0 replies; 5+ messages in thread
From: Jakub Kicinski @ 2020-05-10 18:08 UTC (permalink / raw)
  To: kbuild test robot
  Cc: Arnd Bergmann, kbuild-all, Vladimir Oltean, Andrew Lunn,
	Vivien Didelot, Florian Fainelli, linux-kernel, netdev

On Sun, 10 May 2020 20:26:56 +0800 kbuild test robot wrote:
> From: kbuild test robot <lkp@intel.com>
> 
> drivers/net/dsa/sja1105/sja1105_ethtool.c:481:11-12: Unneeded semicolon
> 
> 
>  Remove unneeded semicolon.
> 
> Generated by: scripts/coccinelle/misc/semicolon.cocci
> 
> Fixes: ae1804de93f6 ("dsa: sja1105: dynamically allocate stats structure")
> CC: Arnd Bergmann <arnd@arndb.de>
> Signed-off-by: kbuild test robot <lkp@intel.com>

Hm, looks like this didn't get into patchwork for some reason.

Applied, thanks.

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

* Re: [PATCH] dsa: sja1105: fix semicolon.cocci warnings
@ 2020-05-10 18:08     ` Jakub Kicinski
  0 siblings, 0 replies; 5+ messages in thread
From: Jakub Kicinski @ 2020-05-10 18:08 UTC (permalink / raw)
  To: kbuild-all

[-- Attachment #1: Type: text/plain, Size: 538 bytes --]

On Sun, 10 May 2020 20:26:56 +0800 kbuild test robot wrote:
> From: kbuild test robot <lkp@intel.com>
> 
> drivers/net/dsa/sja1105/sja1105_ethtool.c:481:11-12: Unneeded semicolon
> 
> 
>  Remove unneeded semicolon.
> 
> Generated by: scripts/coccinelle/misc/semicolon.cocci
> 
> Fixes: ae1804de93f6 ("dsa: sja1105: dynamically allocate stats structure")
> CC: Arnd Bergmann <arnd@arndb.de>
> Signed-off-by: kbuild test robot <lkp@intel.com>

Hm, looks like this didn't get into patchwork for some reason.

Applied, thanks.

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

end of thread, other threads:[~2020-05-10 18:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-10 12:26 [linux-next:master 6966/7905] drivers/net/dsa/sja1105/sja1105_ethtool.c:481:11-12: Unneeded semicolon kbuild test robot
2020-05-10 12:26 ` [PATCH] dsa: sja1105: fix semicolon.cocci warnings kbuild test robot
2020-05-10 12:26   ` kbuild test robot
2020-05-10 18:08   ` Jakub Kicinski
2020-05-10 18:08     ` Jakub Kicinski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.