Re: [PATCH][next] dmaengine: Use fallthrough pseudo-keyword

2020-08-05 Thread Tyrel Datwyler
On 8/5/20 6:19 AM, Vinod Koul wrote: > On 27-07-20, 15:34, Gustavo A. R. Silva wrote: > >> diff --git a/drivers/dma/pl330.c b/drivers/dma/pl330.c >> index 2c508ee672b9..9b69716172a4 100644 >> --- a/drivers/dma/pl330.c >> +++ b/drivers/dma/pl330.c >> @@ -1061,16 +1061,16 @@ static bool _start(struc

Re: [PATCH][next] dmaengine: Use fallthrough pseudo-keyword

2020-08-05 Thread Vinod Koul
On 27-07-20, 15:34, Gustavo A. R. Silva wrote: > diff --git a/drivers/dma/pl330.c b/drivers/dma/pl330.c > index 2c508ee672b9..9b69716172a4 100644 > --- a/drivers/dma/pl330.c > +++ b/drivers/dma/pl330.c > @@ -1061,16 +1061,16 @@ static bool _start(struct pl330_thread *thrd) > > if (

[PATCH][next] dmaengine: Use fallthrough pseudo-keyword

2020-07-27 Thread Gustavo A. R. Silva
Replace the existing /* fall through */ comments and its variants with the new pseudo-keyword macro fallthrough[1]. Also, remove unnecessary fall-through markings when it is the case. [1] https://www.kernel.org/doc/html/v5.7/process/deprecated.html?highlight=fallthrough#implicit-switch-case-fall-