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 153 switch(addr) {
154 154 case 0x0c:
155 155 val = s->sof_timing;
  156 + break;
156 157 default:
157 158 val = 0xff;
158 159 break;
... ...