Re: [PATCH 04/18] use proper fallthrough annotations

2025-04-01 Thread Tom Rini
On Thu, Mar 27, 2025 at 03:32:59PM +, Andre Przywara wrote: > In some cases in the generic code, we were already using switch/case > fallthrough annotations comments, though in a way which might not be > understood by most compilers. > > Replace two non-standard /* no break */ comments with o

[PATCH 04/18] use proper fallthrough annotations

2025-03-27 Thread Andre Przywara
In some cases in the generic code, we were already using switch/case fallthrough annotations comments, though in a way which might not be understood by most compilers. Replace two non-standard /* no break */ comments with our fallthrough; statement-like macro, to make this visible to the compiler.