diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-03-11 21:46:12 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-03-11 21:46:12 +0000 |
commit | d80cfb3f705e88b1074f3b781c476618d2d24c0e (patch) | |
tree | 7981c23dc0cb5f541291a8f62bfef88b7533d433 /hw | |
parent | 19b045dec90378e63496f7ebf86b4f81fdcc5fd3 (diff) | |
download | qemu-d80cfb3f705e88b1074f3b781c476618d2d24c0e.zip qemu-d80cfb3f705e88b1074f3b781c476618d2d24c0e.tar.gz qemu-d80cfb3f705e88b1074f3b781c476618d2d24c0e.tar.bz2 |
Add missing break statement.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1785 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw')
-rw-r--r-- | hw/usb-uhci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c index e93db57..f902d46 100644 --- a/hw/usb-uhci.c +++ b/hw/usb-uhci.c @@ -153,6 +153,7 @@ static uint32_t uhci_ioport_readb(void *opaque, uint32_t addr) switch(addr) { case 0x0c: val = s->sof_timing; + break; default: val = 0xff; break; |