diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2013-01-21 14:53:01 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2013-01-22 11:09:54 +0100 |
commit | 7fa96d73893728752ec7b832a62a48c434748497 (patch) | |
tree | 90ded3a01a199ff665abb87925fda9a2538c169b /hw | |
parent | f4c0e5011b96d67b87db407854ee948da708a0d9 (diff) | |
download | qemu-7fa96d73893728752ec7b832a62a48c434748497.zip qemu-7fa96d73893728752ec7b832a62a48c434748497.tar.gz qemu-7fa96d73893728752ec7b832a62a48c434748497.tar.bz2 |
ohci: add missing break
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/usb/hcd-ohci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/usb/hcd-ohci.c b/hw/usb/hcd-ohci.c index 6a2f5f8..dd9967b 100644 --- a/hw/usb/hcd-ohci.c +++ b/hw/usb/hcd-ohci.c @@ -1736,6 +1736,7 @@ static void ohci_mem_write(void *opaque, /* PXA27x specific registers */ case 24: /* HcStatus */ ohci->hstatus &= ~(val & ohci->hmask); + break; case 25: /* HcHReset */ ohci->hreset = val & ~OHCI_HRESET_FSBIR; |