Re: [PATCH] auxdisplay: panel: mark expected switch fall-throughs

2018-02-23 Thread Miguel Ojeda
Hi Gustavo, On Thu, Oct 12, 2017 at 11:35 PM, Gustavo A. R. Silva wrote: > In preparation to enabling -Wimplicit-fallthrough, mark switch cases > where we are expecting to fall through. > > In this particular case, notice that I replaced the "no break here, > fall through" comments with "fall thr

[PATCH] auxdisplay: panel: mark expected switch fall-throughs

2017-10-12 Thread Gustavo A. R. Silva
In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. In this particular case, notice that I replaced the "no break here, fall through" comments with "fall through" comments, which is what GCC is expecting to find. Signed-off-by: Gustavo A. R