diff options
author | Thomas Huth <thuth@redhat.com> | 2020-09-11 14:18:44 +0200 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2020-09-11 21:25:59 +0200 |
commit | 5ace4cc0e8d818d578b3777a23d477a5e42070eb (patch) | |
tree | 40f0afa2c5762e0a71be8f344f75bb36b786811b | |
parent | b199c682f1f0aaee22b2170a5fb885250057eec2 (diff) | |
download | qemu-5ace4cc0e8d818d578b3777a23d477a5e42070eb.zip |
hw/arm/pxa2xx: Add missing fallthrough comment
Let's make this file compilable with -Werror=implicit-fallthrough :
Looking at the code, it seems like the fallthrough is intended here,
so we should add the corresponding "/* fallthrough */" comment here.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20200911121844.404434-1-thuth@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
-rw-r--r-- | hw/arm/pxa2xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/arm/pxa2xx.c b/hw/arm/pxa2xx.c index 76975d17a4..c1f45b2adf 100644 --- a/hw/arm/pxa2xx.c +++ b/hw/arm/pxa2xx.c @@ -443,7 +443,7 @@ static void pxa2xx_mm_write(void *opaque, hwaddr addr, s->mm_regs[addr >> 2] = value; break; } - + /* fallthrough */ default: qemu_log_mask(LOG_GUEST_ERROR, "%s: Bad write offset 0x%"HWADDR_PRIx"\n", |