mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-17 07:02:03 -06:00
xhci: handle USB_RET_BABBLE
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
This commit is contained in:
parent
9822261ce3
commit
4e906d567a
1 changed files with 5 additions and 0 deletions
|
@ -1716,6 +1716,11 @@ static int xhci_complete_packet(XHCITransfer *xfer)
|
||||||
xhci_xfer_report(xfer);
|
xhci_xfer_report(xfer);
|
||||||
xhci_stall_ep(xfer);
|
xhci_stall_ep(xfer);
|
||||||
break;
|
break;
|
||||||
|
case USB_RET_BABBLE:
|
||||||
|
xfer->status = CC_BABBLE_DETECTED;
|
||||||
|
xhci_xfer_report(xfer);
|
||||||
|
xhci_stall_ep(xfer);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
fprintf(stderr, "%s: FIXME: status = %d\n", __func__,
|
fprintf(stderr, "%s: FIXME: status = %d\n", __func__,
|
||||||
xfer->packet.status);
|
xfer->packet.status);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue