diff options
author | Tom Rini <trini@konsulko.com> | 2023-04-07 10:44:19 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-04-07 10:44:19 -0400 |
commit | 340bebf9c799793affefd166875d5776744988bd (patch) | |
tree | 193a646521cf659f333c5e1c11745116259b0477 /cmd/regulator.c | |
parent | b0b77fdf3d7d2c1a5e48c3971a677f14e372c164 (diff) | |
parent | a554ee7edee8e10b38c6899ad8556daf58ca3afe (diff) |
Merge branch '2023-04-06-assorted-updates'
- Make use of the semi-formal "fallthrough" mechanism, update env tools
to use /run for lockfile, add 2048 game (as a way to test console
changes), update some CONFIG option logic in Kconfig, have lmb command
show regions in use, remove some duplicate serial code, add
__gnu_thumb1_case_si code and fix m68k custodian email address.
Diffstat (limited to 'cmd/regulator.c')
-rw-r--r-- | cmd/regulator.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/regulator.c b/cmd/regulator.c index ed4996dbd2..8988c90108 100644 --- a/cmd/regulator.c +++ b/cmd/regulator.c @@ -37,6 +37,7 @@ static int do_dev(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) printf("Can't get the regulator: %s!\n", name); return failure(ret); } + fallthrough; case 1: if (!currdev) { printf("Regulator device is not set!\n\n"); |