diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-02-24 10:44:05 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-02-27 13:37:36 +0100 |
commit | 7d1994f863c355f1906655f08d624582eeb30788 (patch) | |
tree | 6f542cd7f626033ad11937b34bb0e17bb3a61196 | |
parent | 5a248289a8db9e5c872435757165e086d42bece1 (diff) | |
download | qemu-7d1994f863c355f1906655f08d624582eeb30788.zip qemu-7d1994f863c355f1906655f08d624582eeb30788.tar.gz qemu-7d1994f863c355f1906655f08d624582eeb30788.tar.bz2 |
usb-xhci: enable packet queuing
qemu usb core has packet queues now, so flip lets the switch.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r-- | hw/usb-xhci.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/hw/usb-xhci.c b/hw/usb-xhci.c index 008b0b5..fc5b542 100644 --- a/hw/usb-xhci.c +++ b/hw/usb-xhci.c @@ -1769,12 +1769,6 @@ static void xhci_kick_ep(XHCIState *xhci, unsigned int slotid, unsigned int epid epctx->retry = xfer; break; } - - /* - * Qemu usb can't handle multiple in-flight xfers. - * Stop here for now. - */ - break; } } |