Re: [PATCH] drm/radeon/r300: Mark expected switch fall-throughs

2018-10-12 Thread Gustavo A. R. Silva
On 10/12/18 7:29 PM, Alex Deucher wrote: > This and the r420 patch applied. Thanks! > Thanks, Alex. :) -- Gustavo ___ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx

Re: [PATCH] drm/radeon/r300: Mark expected switch fall-throughs

2018-10-12 Thread Alex Deucher
This and the r420 patch applied. Thanks! Alex On Fri, Oct 12, 2018 at 1:11 PM 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 "Pass through." with >

[PATCH] drm/radeon/r300: Mark expected switch fall-throughs

2018-10-12 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 "Pass through." with "Fall through.", which is what GCC is expecting to find. Addresses-Coverity-ID: 114734 ("Missing break in switch")