From: Gerd Hoffmann Date: Fri, 22 Feb 2013 11:11:59 +0000 (+0100) Subject: unbreak hw/usb/redirect.c build X-Git-Tag: qemu-xen-4.4.0-rc1~6^2~1069 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=82fb0c8908ccbf775be749be9eb3fc0a5813ceaa;p=qemu-upstream-4.5-testing.git unbreak hw/usb/redirect.c build Commit 8550a02d1239415342959f6a32d178bc05c557cc added a streams parameter to usb_wakeup and didn't update redirect.c. Fix it. Signed-off-by: Gerd Hoffmann Signed-off-by: Anthony Liguori --- diff --git a/hw/usb/redirect.c b/hw/usb/redirect.c index 707840390..c519b9b92 100644 --- a/hw/usb/redirect.c +++ b/hw/usb/redirect.c @@ -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 */