dmaengine.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dmaengine: fix semicolon.cocci warnings
       [not found] <201906160043.LzDXUsKd%lkp@intel.com>
@ 2019-06-15 16:05 ` kbuild test robot
  2019-06-21  8:43   ` Gustavo Pimentel
  2019-06-25  4:29   ` Vinod Koul
  0 siblings, 2 replies; 3+ messages in thread
From: kbuild test robot @ 2019-06-15 16:05 UTC (permalink / raw)
  To: Gustavo Pimentel
  Cc: kbuild-all, Vinod Koul, Dan Williams, dmaengine, linux-kernel

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

drivers/dma/dw-edma/dw-edma-core.c:617:2-3: Unneeded semicolon


 Remove unneeded semicolon.

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

Fixes: e63d79d1ffcd ("dmaengine: Add Synopsys eDMA IP core driver")
CC: Gustavo Pimentel <Gustavo.Pimentel@synopsys.com>
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:   f4788d37bc84e27ac9370be252afb451bf6ef718
commit: e63d79d1ffcd2201a2dbff1d7a1184b8f3ec74cf [5032/6646] dmaengine: Add Synopsys eDMA IP core driver

 dw-edma-core.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/dma/dw-edma/dw-edma-core.c
+++ b/drivers/dma/dw-edma/dw-edma-core.c
@@ -614,7 +614,7 @@ static void dw_edma_free_chan_resources(
 			return;
 
 		cpu_relax();
-	};
+	}
 
 	pm_runtime_put(chan->chip->dev);
 }

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

* RE: [PATCH] dmaengine: fix semicolon.cocci warnings
  2019-06-15 16:05 ` [PATCH] dmaengine: fix semicolon.cocci warnings kbuild test robot
@ 2019-06-21  8:43   ` Gustavo Pimentel
  2019-06-25  4:29   ` Vinod Koul
  1 sibling, 0 replies; 3+ messages in thread
From: Gustavo Pimentel @ 2019-06-21  8:43 UTC (permalink / raw)
  To: kbuild test robot, Gustavo Pimentel
  Cc: kbuild-all, Vinod Koul, Dan Williams, dmaengine, linux-kernel

On Sat, Jun 15, 2019 at 17:5:50, kbuild test robot <lkp@intel.com> wrote:

> From: kbuild test robot <lkp@intel.com>
> 
> drivers/dma/dw-edma/dw-edma-core.c:617:2-3: Unneeded semicolon
> 
> 
>  Remove unneeded semicolon.
> 
> Generated by: scripts/coccinelle/misc/semicolon.cocci
> 
> Fixes: e63d79d1ffcd ("dmaengine: Add Synopsys eDMA IP core driver")
> CC: Gustavo Pimentel <Gustavo.Pimentel@synopsys.com>
> Signed-off-by: kbuild test robot <lkp@intel.com>
> ---
> 
> tree:   https://urldefense.proofpoint.com/v2/url?u=https-3A__git.kernel.org_pub_scm_linux_kernel_git_next_linux-2Dnext.git&d=DwIBAg&c=DPL6_X_6JkXFx7AXWqB0tg&r=bkWxpLoW-f-E3EdiDCCa0_h0PicsViasSlvIpzZvPxs&m=fwNy8N2SrvgwC_SywHKiMch_69kqMm3ayOJIdvjOUyY&s=Haa6kbRbugrkJmfXID5NzII5oLi2PDpn2TJJi4u2BRg&e=  master
> head:   f4788d37bc84e27ac9370be252afb451bf6ef718
> commit: e63d79d1ffcd2201a2dbff1d7a1184b8f3ec74cf [5032/6646] dmaengine: Add Synopsys eDMA IP core driver
> 
>  dw-edma-core.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> --- a/drivers/dma/dw-edma/dw-edma-core.c
> +++ b/drivers/dma/dw-edma/dw-edma-core.c
> @@ -614,7 +614,7 @@ static void dw_edma_free_chan_resources(
>  			return;
>  
>  		cpu_relax();
> -	};
> +	}
>  
>  	pm_runtime_put(chan->chip->dev);
>  }


Acked-by: Gustavo Pimentel <gustavo.pimentel@synopsys.com>



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

* Re: [PATCH] dmaengine: fix semicolon.cocci warnings
  2019-06-15 16:05 ` [PATCH] dmaengine: fix semicolon.cocci warnings kbuild test robot
  2019-06-21  8:43   ` Gustavo Pimentel
@ 2019-06-25  4:29   ` Vinod Koul
  1 sibling, 0 replies; 3+ messages in thread
From: Vinod Koul @ 2019-06-25  4:29 UTC (permalink / raw)
  To: kbuild test robot
  Cc: Gustavo Pimentel, kbuild-all, Dan Williams, dmaengine, linux-kernel

On 16-06-19, 00:05, kbuild test robot wrote:
> From: kbuild test robot <lkp@intel.com>
> 
> drivers/dma/dw-edma/dw-edma-core.c:617:2-3: Unneeded semicolon
> 
> 
>  Remove unneeded semicolon.
> 
> Generated by: scripts/coccinelle/misc/semicolon.cocci

Applied, thanks

-- 
~Vinod

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

end of thread, other threads:[~2019-06-25  4:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <201906160043.LzDXUsKd%lkp@intel.com>
2019-06-15 16:05 ` [PATCH] dmaengine: fix semicolon.cocci warnings kbuild test robot
2019-06-21  8:43   ` Gustavo Pimentel
2019-06-25  4:29   ` Vinod Koul

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).