summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2012-02-24 10:44:05 +0100
committerGerd Hoffmann <kraxel@redhat.com>2012-02-27 13:37:36 +0100
commit7d1994f863c355f1906655f08d624582eeb30788 (patch)
tree6f542cd7f626033ad11937b34bb0e17bb3a61196
parent5a248289a8db9e5c872435757165e086d42bece1 (diff)
downloadfocaccia-qemu-7d1994f863c355f1906655f08d624582eeb30788.tar.gz
focaccia-qemu-7d1994f863c355f1906655f08d624582eeb30788.zip
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.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/hw/usb-xhci.c b/hw/usb-xhci.c
index 008b0b5718..fc5b542d99 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;
     }
 }