diff options
Diffstat (limited to 'emulators/qemu-devel/files/patch-usb-hchalt')
-rw-r--r-- | emulators/qemu-devel/files/patch-usb-hchalt | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/emulators/qemu-devel/files/patch-usb-hchalt b/emulators/qemu-devel/files/patch-usb-hchalt deleted file mode 100644 index cf141d1475e6..000000000000 --- a/emulators/qemu-devel/files/patch-usb-hchalt +++ /dev/null @@ -1,18 +0,0 @@ -Index: qemu/hw/usb-uhci.c -@@ -174,6 +177,7 @@ - if ((val & UHCI_CMD_RS) && !(s->cmd & UHCI_CMD_RS)) { - /* start frame processing */ - qemu_mod_timer(s->frame_timer, qemu_get_clock(vm_clock)); -+ s->status &= ~UHCI_STS_HCHALTED; - } - if (val & UHCI_CMD_GRESET) { - UHCIPort *port; -@@ -528,6 +534,8 @@ - - if (!(s->cmd & UHCI_CMD_RS)) { - qemu_del_timer(s->frame_timer); -+ /* set hchalted bit in status - UHCI11D 2.1.2 */ -+ s->status |= UHCI_STS_HCHALTED; - return; - } - frame_addr = s->fl_base_addr + ((s->frnum & 0x3ff) << 2); |