diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c index ba15ae00198d0e793e2ee085413afe3fec748b4a..2af3dd6e835de32237a2f46647222b0513f815d8 100644 --- a/hw/usb/hcd-xhci.c +++ b/hw/usb/hcd-xhci.c @@ -2224,6 +2224,8 @@ static void xhci_kick_ep(XHCIState *xhci, unsigned int slotid, if (xfer->running_retry) { DPRINTF("xhci: xfer nacked, stopping schedule\n"); epctx->retry = xfer; + timer_mod(epctx->kick_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) + + epctx->interval * 125000); break; } }