diff options
author | Peter Maydell | 2013-01-21 13:50:51 +0100 |
---|---|---|
committer | Blue Swirl | 2013-01-26 14:20:43 +0100 |
commit | bf4229d3cb09be2efc0add569feba33834fc5d93 (patch) | |
tree | 58232e77fd5222835e61e2204920923df278f515 /hw/arm_sysctl.c | |
parent | link seccomp only with softmmu targets (diff) | |
download | qemu-bf4229d3cb09be2efc0add569feba33834fc5d93.tar.gz qemu-bf4229d3cb09be2efc0add569feba33834fc5d93.tar.xz qemu-bf4229d3cb09be2efc0add569feba33834fc5d93.zip |
hw/arm_sysctl.c: Add missing 'break' statements
Add some break statements that were accidentally omitted
from some cases of arm_sysctl_write(). The omission was
harmless because in both cases the following case did
an immediate break, but adding the breaks explicitly
placates static analysers and avoids weird behaviour if
the following register is ever implemented as something
other than a no-op.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/arm_sysctl.c')
-rw-r--r-- | hw/arm_sysctl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/arm_sysctl.c b/hw/arm_sysctl.c index 755a5df2c9..da36f8a435 100644 --- a/hw/arm_sysctl.c +++ b/hw/arm_sysctl.c @@ -199,6 +199,7 @@ static void arm_sysctl_write(void *opaque, hwaddr offset, switch (offset) { case 0x08: /* LED */ s->leds = val; + break; case 0x0c: /* OSC0 */ case 0x10: /* OSC1 */ case 0x14: /* OSC2 */ @@ -295,6 +296,7 @@ static void arm_sysctl_write(void *opaque, hwaddr offset, /* On VExpress this register is unimplemented and will RAZ/WI */ break; } + break; case 0x54: /* CLCDSER */ case 0x64: /* DMAPSR0 */ case 0x68: /* DMAPSR1 */ |