commit | 8264da1d88d95a815963244b2c6bbaf1d6301449 | [log] [tgz] |
---|---|---|
author | Andre Przywara <andre.przywara@arm.com> | Thu Mar 27 15:33:12 2025 +0000 |
committer | Tom Rini <trini@konsulko.com> | Tue Apr 08 16:23:51 2025 -0600 |
tree | 4cc57c1a5435829a9c4a6e7239a7a5ec42dbdee5 | |
parent | 8e6294f71b056cf9296bb37dc56ea59deecd3628 [diff] |
cmd: spl: annotate switch/case fallthrough The argument parsing in the SPL configuration command uses an implicit switch/case fallthrough when dealing with a different number of arguments. Add our "fallthrough;" statement-like macro before the respective labels in the bootm code, to avoid a warning when GCC's -Wimplicit-fallthrough warning option is enabled. Signed-off-by: Andre Przywara <andre.przywara@arm.com> Reviewed-by: Tom Rini <trini@konsulko.com>