Re: [PATCH] mmc: tifm_sd: Mark expected switch fall-through

2018-10-05 Thread Ulf Hansson
On 5 October 2018 at 11:54, Gustavo A. R. Silva wrote: > In preparation to enabling -Wimplicit-fallthrough, mark switch cases > where we are expecting to fall through. > > Notice that in this particular case, I replaced the > "deliberate fall-through" comment with a proper "fall through" > at the

[PATCH] mmc: tifm_sd: Mark expected switch fall-through

2018-10-05 Thread Gustavo A. R. Silva
In preparation to enabling -Wimplicit-fallthrough, mark switch cases where we are expecting to fall through. Notice that in this particular case, I replaced the "deliberate fall-through" comment with a proper "fall through" at the bottom of the case, which is what GCC is expecting to find. Addres