Re: [PATCH] crypto: ccree - fix missing break in switch statement

2019-02-22 Thread Herbert Xu
On Mon, Feb 11, 2019 at 12:31:31PM -0600, Gustavo A. R. Silva wrote: > Add missing break statement in order to prevent the code from falling > through to case S_DIN_to_DES. > > This bug was found thanks to the ongoing efforts to enable > -Wimplicit-fallthrough. > > Fixes: 63ee04c8b491 ("crypto:

Re: [PATCH] crypto: ccree - fix missing break in switch statement

2019-02-20 Thread Gustavo A. R. Silva
Hi all, Friendly ping: Who can take this? Thanks -- Gustavo On 2/11/19 12:31 PM, Gustavo A. R. Silva wrote: > Add missing break statement in order to prevent the code from falling > through to case S_DIN_to_DES. > > This bug was found thanks to the ongoing efforts to enable >

[PATCH] crypto: ccree - fix missing break in switch statement

2019-02-11 Thread Gustavo A. R. Silva
Add missing break statement in order to prevent the code from falling through to case S_DIN_to_DES. This bug was found thanks to the ongoing efforts to enable -Wimplicit-fallthrough. Fixes: 63ee04c8b491 ("crypto: ccree - add skcipher support") Cc: sta...@vger.kernel.org Signed-off-by: Gustavo A.