]> git.proxmox.com Git - qemu.git/commit
hw/arm_sysctl.c: Add missing 'break' statements
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 21 Jan 2013 12:50:51 +0000 (12:50 +0000)
committerBlue Swirl <blauwirbel@gmail.com>
Sat, 26 Jan 2013 13:20:43 +0000 (13:20 +0000)
commitbf4229d3cb09be2efc0add569feba33834fc5d93
tree58232e77fd5222835e61e2204920923df278f515
parentb4451996e712653f9ef4d53d975a158572b8574d
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>
hw/arm_sysctl.c