mirror of
https://github.com/qemu/qemu.git
synced 2025-08-09 10:25:06 +00:00
hw/intc/allwinner-a10-pic: Add missing 'break'
Add missing 'break' after handling of AW_A10_PIC_BASE_ADDR write. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
This commit is contained in:
parent
2f0d8631b7
commit
654039b42a
@ -97,6 +97,7 @@ static void aw_a10_pic_write(void *opaque, hwaddr offset, uint64_t value,
|
|||||||
switch (offset) {
|
switch (offset) {
|
||||||
case AW_A10_PIC_BASE_ADDR:
|
case AW_A10_PIC_BASE_ADDR:
|
||||||
s->base_addr = value & ~0x3;
|
s->base_addr = value & ~0x3;
|
||||||
|
break;
|
||||||
case AW_A10_PIC_PROTECT:
|
case AW_A10_PIC_PROTECT:
|
||||||
s->protect = value;
|
s->protect = value;
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user