aboutsummaryrefslogtreecommitdiff
path: root/hw/usb
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2015-07-17 09:12:57 +0200
committerGerd Hoffmann <kraxel@redhat.com>2015-10-20 09:15:23 +0200
commite206ddfb57e2595cc43ad3667b3becc6bd2ef62d (patch)
tree8186250a9a5bcb347a9be55f0d6e0562812034f1 /hw/usb
parent26c7be842637ee65a79cd77f96a99c23ddcd90ad (diff)
downloadqemu-e206ddfb57e2595cc43ad3667b3becc6bd2ef62d.zip
qemu-e206ddfb57e2595cc43ad3667b3becc6bd2ef62d.tar.gz
qemu-e206ddfb57e2595cc43ad3667b3becc6bd2ef62d.tar.bz2
usb-host: add wakeup call for iso xfers
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/usb')
-rw-r--r--hw/usb/host-libusb.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/usb/host-libusb.c b/hw/usb/host-libusb.c
index 5e492fd..7695a97 100644
--- a/hw/usb/host-libusb.c
+++ b/hw/usb/host-libusb.c
@@ -451,6 +451,7 @@ static void usb_host_req_complete_iso(struct libusb_transfer *transfer)
}
if (xfer->ring->ep->pid == USB_TOKEN_IN) {
QTAILQ_INSERT_TAIL(&xfer->ring->copy, xfer, next);
+ usb_wakeup(xfer->ring->ep, 0);
} else {
QTAILQ_INSERT_TAIL(&xfer->ring->unused, xfer, next);
}