summaryrefslogtreecommitdiff
path: root/emulators/qemu-devel/files/patch-usb-hchalt
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2006-04-29 09:15:50 +0000
committerPav Lucistnik <pav@FreeBSD.org>2006-04-29 09:15:50 +0000
commitfef8509c793f45b217fb28f1c0af2b373a8ff4af (patch)
treef58aff4c2934fb97beac783b9dd64ade30065361 /emulators/qemu-devel/files/patch-usb-hchalt
parentAdd an additional mirror. (diff)
- Update to 2006-04-26 snapshot
PR: ports/96426 Submitted by: Juergen Lock <nox@jelal.kn-bremen.de> (maintainer)
Notes
Notes: svn path=/head/; revision=160721
Diffstat (limited to 'emulators/qemu-devel/files/patch-usb-hchalt')
-rw-r--r--emulators/qemu-devel/files/patch-usb-hchalt18
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);