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/pci.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/pci.c')
-rw-r--r-- | cmd/pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/pci.c b/cmd/pci.c index 58a74755c8b..78b661d15b1 100644 --- a/cmd/pci.c +++ b/cmd/pci.c @@ -517,6 +517,7 @@ static int do_pci(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) addr = hextoul(argv[3], NULL); if (argc > 4) value = hextoul(argv[4], NULL); + fallthrough; case 'h': /* header */ case 'b': /* bars */ if (argc < 3) |