aboutsummaryrefslogtreecommitdiff
path: root/src/soc/rockchip/rk3288
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2022-03-24 01:16:34 +0100
committerArthur Heymans <arthur@aheymans.xyz>2022-05-11 06:04:25 +0000
commit507b0746d62cff575ab438c4e82ac7cfb0e93f26 (patch)
treef88984c1ca79bd465e9b52c4cefbeae63359bd05 /src/soc/rockchip/rk3288
parentcc70646255414f8e3f6df03cede54f6f9a651db2 (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/rockchip/rk3288')
-rw-r--r--src/soc/rockchip/rk3288/display.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/rockchip/rk3288/display.c b/src/soc/rockchip/rk3288/display.c
index 19a75de1fd..9d6cca18b5 100644
--- a/src/soc/rockchip/rk3288/display.c
+++ b/src/soc/rockchip/rk3288/display.c
@@ -63,7 +63,7 @@ void rk_display_init(struct device *dev, u32 lcdbase, unsigned long fb_size)
if (conf->vop_mode == VOP_MODE_EDP)
return;
}
- /* fall thru */
+ __fallthrough;
case VOP_MODE_HDMI:
printk(BIOS_DEBUG, "Attempting to setup HDMI display.\n");
rkclk_configure_hdmi();
@@ -78,7 +78,7 @@ void rk_display_init(struct device *dev, u32 lcdbase, unsigned long fb_size)
if (conf->vop_mode == VOP_MODE_HDMI)
return;
}
- /* fall thru */
+ __fallthrough;
default:
printk(BIOS_WARNING, "Cannot read any edid info, aborting.\n");
return;