Re: [PATCH] common: console: move break; statement

2025-04-11 Thread Tom Rini
On Tue, 25 Mar 2025 17:47:44 +, Andre Przywara wrote: > In console_setfile(), there is some #ifdef'ed code, updating monitor > functions for a U-Boot proper build. This is called inside a switch/case > statement, but the closing "break;" is inside the #ifdef section. > This doesn't look right:

Re: [PATCH] common: console: move break; statement

2025-03-25 Thread Tom Rini
On Tue, Mar 25, 2025 at 05:47:44PM +, Andre Przywara wrote: > In console_setfile(), there is some #ifdef'ed code, updating monitor > functions for a U-Boot proper build. This is called inside a switch/case > statement, but the closing "break;" is inside the #ifdef section. > This doesn't look