| Submitter | Hans de Goede |
|---|---|
| Date | Nov. 17, 2012, 11:11 a.m. |
| Message ID | <1353150711-24795-4-git-send-email-hdegoede@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/199831/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/hw/usb/hcd-uhci.c b/hw/usb/hcd-uhci.c index 078be2a..8e47803 100644 --- a/hw/usb/hcd-uhci.c +++ b/hw/usb/hcd-uhci.c @@ -963,7 +963,6 @@ static void uhci_async_complete(USBPort *port, USBPacket *packet) UHCIState *s = async->queue->uhci; if (packet->status == USB_RET_REMOVE_FROM_QUEUE) { - uhci_async_unlink(async); uhci_async_cancel(async); return; }
uhci_async_cancel() already does a uhci_async_unlink(). Signed-off-by: Hans de Goede <hdegoede@redhat.com> --- hw/usb/hcd-uhci.c | 1 - 1 file changed, 1 deletion(-)