]> Git Repo - qemu.git/commitdiff
unbreak hw/usb/redirect.c build
authorGerd Hoffmann <[email protected]>
Fri, 22 Feb 2013 11:11:59 +0000 (12:11 +0100)
committerAnthony Liguori <[email protected]>
Fri, 22 Feb 2013 15:53:56 +0000 (09:53 -0600)
Commit 8550a02d1239415342959f6a32d178bc05c557cc added a streams
parameter to usb_wakeup and didn't update redirect.c.  Fix it.

Signed-off-by: Gerd Hoffmann <[email protected]>
Signed-off-by: Anthony Liguori <[email protected]>
hw/usb/redirect.c

index 7078403904d909de86ec98e99af5eaae65c86bf6..c519b9b92a650429a8da7fbf3dc83ca294dbdf71 100644 (file)
@@ -1897,7 +1897,7 @@ static void usbredir_interrupt_packet(void *priv, uint64_t id,
         }
 
         if (QTAILQ_EMPTY(&dev->endpoint[EP2I(ep)].bufpq)) {
-            usb_wakeup(usb_ep_get(&dev->dev, USB_TOKEN_IN, ep & 0x0f));
+            usb_wakeup(usb_ep_get(&dev->dev, USB_TOKEN_IN, ep & 0x0f), 0);
         }
 
         /* bufp_alloc also adds the packet to the ep queue */
This page took 0.029645 seconds and 4 git commands to generate.