aboutsummaryrefslogtreecommitdiff
path: root/hw/timer
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2020-10-20 17:39:34 +0200
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>2020-10-27 00:22:56 +0100
commit97edd8ba4b167b6adfbda9598280e5b31270fd40 (patch)
treed18c52c102516d373ada86c681aec335b7e9bd97 /hw/timer
parent2f5af2dcf3cfd051e121fef2b861d46d113f1ac7 (diff)
downloadqemu-97edd8ba4b167b6adfbda9598280e5b31270fd40.zip
qemu-97edd8ba4b167b6adfbda9598280e5b31270fd40.tar.gz
qemu-97edd8ba4b167b6adfbda9598280e5b31270fd40.tar.bz2
hw/timer/sh_timer: Silence warnings about missing fallthrough statements
When compiling with -Werror=implicit-fallthrough, gcc complains about missing fallthrough annotations in this file. Looking at the code, the fallthrough is very likely intended here, so add some comments to silence the compiler warnings. Fixes: cd1a3f6840e ("Stand-alone TMU emulation code") Signed-off-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20201020153935.54315-3-thuth@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'hw/timer')
-rw-r--r--hw/timer/sh_timer.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/hw/timer/sh_timer.c b/hw/timer/sh_timer.c
index b09e30f..934daaa 100644
--- a/hw/timer/sh_timer.c
+++ b/hw/timer/sh_timer.c
@@ -122,6 +122,7 @@ static void sh_timer_write(void *opaque, hwaddr offset,
if (s->feat & TIMER_FEAT_EXTCLK) {
break;
}
+ /* fallthrough */
default:
hw_error("sh_timer_write: Reserved TPSC value\n");
break;
@@ -135,6 +136,7 @@ static void sh_timer_write(void *opaque, hwaddr offset,
if (s->feat & TIMER_FEAT_EXTCLK) {
break;
}
+ /* fallthrough */
default:
hw_error("sh_timer_write: Reserved CKEG value\n");
break;
@@ -147,6 +149,7 @@ static void sh_timer_write(void *opaque, hwaddr offset,
if (s->feat & TIMER_FEAT_CAPT) {
break;
}
+ /* fallthrough */
default:
hw_error("sh_timer_write: Reserved ICPE value\n");
break;
@@ -180,6 +183,7 @@ static void sh_timer_write(void *opaque, hwaddr offset,
s->tcpr = value;
break;
}
+ /* fallthrough */
default:
hw_error("sh_timer_write: Bad offset %x\n", (int)offset);
}