diff options
author | Zheng Bao <fishbaozi@gmail.com> | 2022-12-08 13:56:13 +0800 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-01-25 14:32:12 +0000 |
commit | 92c920b7304368188234c55f056e766db7d3e735 (patch) | |
tree | 4d8f4be935aa72ce701012912936cc2b48e51f77 /util/amdfwtool/amdfwtool.c | |
parent | 2b03894e15a115c18d97f44a8085ebe4148bcc34 (diff) |
amdfwtool: Remove comment "fallthrough"
Fix the comment as "checkpatch" says.
Change-Id: Ifa5d7de037aa7024779f3aa4a5d2f5033eed264a
Signed-off-by: Zheng Bao <fishbaozi@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/71648
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'util/amdfwtool/amdfwtool.c')
-rw-r--r-- | util/amdfwtool/amdfwtool.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/util/amdfwtool/amdfwtool.c b/util/amdfwtool/amdfwtool.c index 1538a2c2d8..f9d53d0ae5 100644 --- a/util/amdfwtool/amdfwtool.c +++ b/util/amdfwtool/amdfwtool.c @@ -2461,13 +2461,13 @@ int main(int argc, char **argv) } } else { switch (efs_location) { - case 0: /* Fall through */ - case 0xFFFA0000: /* Fall through */ - case 0xFFF20000: /* Fall through */ - case 0xFFE20000: /* Fall through */ - case 0xFFC20000: /* Fall through */ - case 0xFF820000: /* Fall through */ - case 0xFF020000: /* Fall through */ + case 0: + case 0xFFFA0000: + case 0xFFF20000: + case 0xFFE20000: + case 0xFFC20000: + case 0xFF820000: + case 0xFF020000: break; default: fprintf(stderr, "Error: Invalid Directory location.\n"); |