From e206ddfb57e2595cc43ad3667b3becc6bd2ef62d Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Fri, 17 Jul 2015 09:12:57 +0200 Subject: [PATCH] usb-host: add wakeup call for iso xfers Signed-off-by: Gerd Hoffmann --- hw/usb/host-libusb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/usb/host-libusb.c b/hw/usb/host-libusb.c index 5e492fda0f..7695a97143 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); }