* [wireless-testsing2:master 1146/1155] drivers/net/ethernet/chelsio/cxgb4/sge.c:2260:2-3: Unneeded semicolon
@ 2019-11-08 18:32 kbuild test robot
2019-11-08 18:32 ` [PATCH] cxgb4: fix semicolon.cocci warnings kbuild test robot
0 siblings, 1 reply; 3+ messages in thread
From: kbuild test robot @ 2019-11-08 18:32 UTC (permalink / raw)
To: kbuild-all
[-- Attachment #1: Type: text/plain, Size: 700 bytes --]
tree: https://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-testing.git master
head: df790d62ec819cdf459d5048eef3a2167df3c0a2
commit: 4846d5330dafc82990be7ffe1d1b383157268bd9 [1146/1155] cxgb4: add Tx and Rx path for ETHOFLD traffic
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/ethernet/chelsio/cxgb4/sge.c:2260:2-3: 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(a)lists.01.org Intel Corporation
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] cxgb4: fix semicolon.cocci warnings
2019-11-08 18:32 [wireless-testsing2:master 1146/1155] drivers/net/ethernet/chelsio/cxgb4/sge.c:2260:2-3: Unneeded semicolon kbuild test robot
@ 2019-11-08 18:32 ` kbuild test robot
2019-11-09 17:53 ` Rahul Lakkireddy
0 siblings, 1 reply; 3+ messages in thread
From: kbuild test robot @ 2019-11-08 18:32 UTC (permalink / raw)
To: kbuild-all
[-- Attachment #1: Type: text/plain, Size: 995 bytes --]
From: kbuild test robot <lkp@intel.com>
drivers/net/ethernet/chelsio/cxgb4/sge.c:2260:2-3: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Fixes: 4846d5330daf ("cxgb4: add Tx and Rx path for ETHOFLD traffic")
CC: Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>
Signed-off-by: kbuild test robot <lkp@intel.com>
---
tree: https://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-testing.git master
head: df790d62ec819cdf459d5048eef3a2167df3c0a2
commit: 4846d5330dafc82990be7ffe1d1b383157268bd9 [1146/1155] cxgb4: add Tx and Rx path for ETHOFLD traffic
sge.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/net/ethernet/chelsio/cxgb4/sge.c
+++ b/drivers/net/ethernet/chelsio/cxgb4/sge.c
@@ -2257,7 +2257,7 @@ static void ethofld_xmit(struct net_devi
case CXGB4_EO_STATE_CLOSED:
default:
return;
- };
+ }
while (pktcount--) {
skb = eosw_txq_peek(eosw_txq);
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] cxgb4: fix semicolon.cocci warnings
2019-11-08 18:32 ` [PATCH] cxgb4: fix semicolon.cocci warnings kbuild test robot
@ 2019-11-09 17:53 ` Rahul Lakkireddy
0 siblings, 0 replies; 3+ messages in thread
From: Rahul Lakkireddy @ 2019-11-09 17:53 UTC (permalink / raw)
To: kbuild-all
[-- Attachment #1: Type: text/plain, Size: 1453 bytes --]
On Saturday, November 11/09/19, 2019 at 02:32:36 +0800, kbuild test robot wrote:
> From: kbuild test robot <lkp@intel.com>
>
> drivers/net/ethernet/chelsio/cxgb4/sge.c:2260:2-3: Unneeded semicolon
>
>
> Remove unneeded semicolon.
>
> Generated by: scripts/coccinelle/misc/semicolon.cocci
>
> Fixes: 4846d5330daf ("cxgb4: add Tx and Rx path for ETHOFLD traffic")
> CC: Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>
> Signed-off-by: kbuild test robot <lkp@intel.com>
Looks good. Please apply this patch to net-next tree. Let me know if
I need to send this fix as a separate patch instead. This is the first
time for me to see a bot fixing one of my commits and I'm unaware of
the correct procedure for this...
Acked-by: Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>
> ---
>
> tree: https://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-testing.git master
> head: df790d62ec819cdf459d5048eef3a2167df3c0a2
> commit: 4846d5330dafc82990be7ffe1d1b383157268bd9 [1146/1155] cxgb4: add Tx and Rx path for ETHOFLD traffic
>
> sge.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> --- a/drivers/net/ethernet/chelsio/cxgb4/sge.c
> +++ b/drivers/net/ethernet/chelsio/cxgb4/sge.c
> @@ -2257,7 +2257,7 @@ static void ethofld_xmit(struct net_devi
> case CXGB4_EO_STATE_CLOSED:
> default:
> return;
> - };
> + }
>
> while (pktcount--) {
> skb = eosw_txq_peek(eosw_txq);
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-11-09 17:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-08 18:32 [wireless-testsing2:master 1146/1155] drivers/net/ethernet/chelsio/cxgb4/sge.c:2260:2-3: Unneeded semicolon kbuild test robot
2019-11-08 18:32 ` [PATCH] cxgb4: fix semicolon.cocci warnings kbuild test robot
2019-11-09 17:53 ` Rahul Lakkireddy
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.