* drivers/soc/ti/k3-ringacc.c:616:2-3: Unneeded semicolon
@ 2020-06-23 18:34 kernel test robot
2020-06-23 18:34 ` [PATCH] soc: ti: k3: fix semicolon.cocci warnings kernel test robot
0 siblings, 1 reply; 3+ messages in thread
From: kernel test robot @ 2020-06-23 18:34 UTC (permalink / raw)
To: Grygorii Strashko
Cc: kbuild-all, linux-kernel, Santosh Shilimkar, Peter Ujfalusi,
Tero Kristo
[-- Attachment #1: Type: text/plain, Size: 726 bytes --]
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 3e08a95294a4fb3702bb3d35ed08028433c37fe6
commit: 3277e8aa2504d97e022ecb9777d784ac1a439d36 soc: ti: k3: add navss ringacc driver
date: 5 months ago
config: arm64-randconfig-c003-20200623 (attached as .config)
compiler: aarch64-linux-gcc (GCC) 9.3.0
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
coccinelle warnings: (new ones prefixed by >>)
>> drivers/soc/ti/k3-ringacc.c:616:2-3: 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@lists.01.org
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 41490 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] soc: ti: k3: fix semicolon.cocci warnings
2020-06-23 18:34 drivers/soc/ti/k3-ringacc.c:616:2-3: Unneeded semicolon kernel test robot
@ 2020-06-23 18:34 ` kernel test robot
2020-06-26 10:48 ` Grygorii Strashko
0 siblings, 1 reply; 3+ messages in thread
From: kernel test robot @ 2020-06-23 18:34 UTC (permalink / raw)
To: Grygorii Strashko
Cc: kbuild-all, linux-kernel, Santosh Shilimkar, Peter Ujfalusi,
Tero Kristo, linux-arm-kernel
From: kernel test robot <lkp@intel.com>
drivers/soc/ti/k3-ringacc.c:616:2-3: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Fixes: 3277e8aa2504 ("soc: ti: k3: add navss ringacc driver")
CC: Grygorii Strashko <grygorii.strashko@ti.com>
Signed-off-by: kernel test robot <lkp@intel.com>
---
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 3e08a95294a4fb3702bb3d35ed08028433c37fe6
commit: 3277e8aa2504d97e022ecb9777d784ac1a439d36 soc: ti: k3: add navss ringacc driver
k3-ringacc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/soc/ti/k3-ringacc.c
+++ b/drivers/soc/ti/k3-ringacc.c
@@ -613,7 +613,7 @@ int k3_ringacc_ring_cfg(struct k3_ring *
ring->ops = NULL;
ret = -EINVAL;
goto err_free_proxy;
- };
+ }
ring->ring_mem_virt = dma_alloc_coherent(ringacc->dev,
ring->size * (4 << ring->elm_size),
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] soc: ti: k3: fix semicolon.cocci warnings
2020-06-23 18:34 ` [PATCH] soc: ti: k3: fix semicolon.cocci warnings kernel test robot
@ 2020-06-26 10:48 ` Grygorii Strashko
0 siblings, 0 replies; 3+ messages in thread
From: Grygorii Strashko @ 2020-06-26 10:48 UTC (permalink / raw)
To: kernel test robot
Cc: kbuild-all, linux-kernel, Santosh Shilimkar, Peter Ujfalusi,
Tero Kristo, linux-arm-kernel
On 23/06/2020 21:34, kernel test robot wrote:
> From: kernel test robot <lkp@intel.com>
>
> drivers/soc/ti/k3-ringacc.c:616:2-3: Unneeded semicolon
>
>
> Remove unneeded semicolon.
>
> Generated by: scripts/coccinelle/misc/semicolon.cocci
>
> Fixes: 3277e8aa2504 ("soc: ti: k3: add navss ringacc driver")
> CC: Grygorii Strashko <grygorii.strashko@ti.com>
> Signed-off-by: kernel test robot <lkp@intel.com>
> ---
>
> tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
> head: 3e08a95294a4fb3702bb3d35ed08028433c37fe6
> commit: 3277e8aa2504d97e022ecb9777d784ac1a439d36 soc: ti: k3: add navss ringacc driver
>
> k3-ringacc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> --- a/drivers/soc/ti/k3-ringacc.c
> +++ b/drivers/soc/ti/k3-ringacc.c
> @@ -613,7 +613,7 @@ int k3_ringacc_ring_cfg(struct k3_ring *
> ring->ops = NULL;
> ret = -EINVAL;
> goto err_free_proxy;
> - };
> + }
>
> ring->ring_mem_virt = dma_alloc_coherent(ringacc->dev,
> ring->size * (4 << ring->elm_size),
>
Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com>
--
Best regards,
grygorii
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-06-26 10:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-23 18:34 drivers/soc/ti/k3-ringacc.c:616:2-3: Unneeded semicolon kernel test robot
2020-06-23 18:34 ` [PATCH] soc: ti: k3: fix semicolon.cocci warnings kernel test robot
2020-06-26 10:48 ` Grygorii Strashko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox