Re: [PATCH 008/141] IB/hfi1: Fix fall-through warnings for Clang

2020-11-23 Thread Gustavo A. R. Silva
On Sun, Nov 22, 2020 at 09:30:25AM -0500, Mike Marciniszyn wrote: > > On 11/20/2020 1:25 PM, Gustavo A. R. Silva wrote: > > In preparation to enable -Wimplicit-fallthrough for Clang, fix multiple > > warnings by explicitly adding multiple break statements instead of just > > letting the code fall

Re: [PATCH 008/141] IB/hfi1: Fix fall-through warnings for Clang

2020-11-22 Thread Mike Marciniszyn
On 11/20/2020 1:25 PM, Gustavo A. R. Silva wrote: In preparation to enable -Wimplicit-fallthrough for Clang, fix multiple warnings by explicitly adding multiple break statements instead of just letting the code fall through to the next case. Signed-off-by: Gustavo A. R. Silva Looks good and