diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-03-24 01:16:34 +0100 |
---|---|---|
committer | Arthur Heymans <arthur@aheymans.xyz> | 2022-05-11 06:04:25 +0000 |
commit | 507b0746d62cff575ab438c4e82ac7cfb0e93f26 (patch) | |
tree | f88984c1ca79bd465e9b52c4cefbeae63359bd05 /src/soc/nvidia | |
parent | cc70646255414f8e3f6df03cede54f6f9a651db2 (diff) |
soc/*: Use __fallthrough statement
Clang needs an attribute not a comment.
Change-Id: I78f87d80bd4f366ed6cfa74619dd107ac61bc935
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63068
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Julius Werner <jwerner@chromium.org>
Diffstat (limited to 'src/soc/nvidia')
-rw-r--r-- | src/soc/nvidia/tegra210/bootblock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/nvidia/tegra210/bootblock.c b/src/soc/nvidia/tegra210/bootblock.c index 1657d7ce44..e8c4324995 100644 --- a/src/soc/nvidia/tegra210/bootblock.c +++ b/src/soc/nvidia/tegra210/bootblock.c @@ -137,7 +137,7 @@ static void mbist_workaround(void) break; case OP_UDELAY: udelay(wa_op->val); - /* fall thru */ + __fallthrough; default: continue; } |