mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-11 16:00:50 -07:00
fix "Missing break in switch" coverity reports
Many of these are marked as "intentional/fix required" because they just need adding a fall through comment. This is exactly what this patch does, except for target/mips/translate.c where it is easier to duplicate the code, and hw/audio/sb16.c where I consulted the DOSBox sources and decide to just remove the LOG_UNIMP before the fallthrough. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
154c1d1f96
commit
edd7541b8c
10 changed files with 19 additions and 5 deletions
|
|
@ -1426,7 +1426,8 @@ static void cirrus_vga_write_sr(CirrusVGAState * s, uint32_t val)
|
|||
s->vga.hw_cursor_y = (val << 3) | (s->vga.sr_index >> 5);
|
||||
break;
|
||||
case 0x07: // Extended Sequencer Mode
|
||||
cirrus_update_memory_access(s);
|
||||
cirrus_update_memory_access(s);
|
||||
/* fall through */
|
||||
case 0x08: // EEPROM Control
|
||||
case 0x09: // Scratch Register 0
|
||||
case 0x0a: // Scratch Register 1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue