From: Andre Przywara Date: Thu, 27 Mar 2025 15:33:11 +0000 (+0000) Subject: cmd: pmic: annotate switch/case fallthrough X-Git-Tag: v2025.07-rc1~108^2~1 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d29a90c8ce4a2e27f502f5ac5a051f7bcfd66e11;p=pandora-u-boot.git cmd: pmic: annotate switch/case fallthrough The argument parsing code in the pmic command uses an implicit switch/case fallthrough to handle the common part of having one or two arguments. Add our "fallthrough;" statement-like macro before the second branch in the parsing code, to avoid a warning when GCC's -Wimplicit-fallthrough warning option is enabled. Signed-off-by: Andre Przywara Reviewed-by: Tom Rini --- diff --git a/cmd/pmic.c b/cmd/pmic.c index 3ad1b8aa375..e5fc8f97b75 100644 --- a/cmd/pmic.c +++ b/cmd/pmic.c @@ -34,6 +34,7 @@ static int do_dev(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) printf("Can't get PMIC: %s!\n", name); return failure(ret); } + fallthrough; case 1: if (!currdev) { printf("PMIC device is not set!\n\n");