Re: [PATCH 10/18] video: annotate switch/case fall-through

2025-04-04 Thread Tom Rini
On Thu, Mar 27, 2025 at 03:33:05PM +, Andre Przywara wrote: > The generic DM video code uses an implicit switch/case fallthrough to > provide fallback code paths when certain colour depths are not enabled. > > Add our "fallthrough;" statement-like macro to the video_fill() function > to avoid

[PATCH 10/18] video: annotate switch/case fall-through

2025-03-27 Thread Andre Przywara
The generic DM video code uses an implicit switch/case fallthrough to provide fallback code paths when certain colour depths are not enabled. Add our "fallthrough;" statement-like macro to the video_fill() function to avoid a warning when GCC's -Wimplicit-fallthrough warning option is enabled. Si