Commit d80cfb3f705e88b1074f3b781c476618d2d24c0e

Authored by pbrook
1 parent 19b045de

Add missing break statement.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1785 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 0 deletions
hw/usb-uhci.c
@@ -153,6 +153,7 @@ static uint32_t uhci_ioport_readb(void *opaque, uint32_t addr) @@ -153,6 +153,7 @@ static uint32_t uhci_ioport_readb(void *opaque, uint32_t addr)
153 switch(addr) { 153 switch(addr) {
154 case 0x0c: 154 case 0x0c:
155 val = s->sof_timing; 155 val = s->sof_timing;
  156 + break;
156 default: 157 default:
157 val = 0xff; 158 val = 0xff;
158 break; 159 break;