mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-24 13:13:57 +08:00
USB: xhci: Return -EPROTO on a split transaction error.
When the xHCI hardware says a transfer completed with a split transaction error, set the URB status to -EPROTO. Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
04dd950d92
commit
ec74e4035a
@ -1139,6 +1139,7 @@ static int handle_tx_event(struct xhci_hcd *xhci,
|
||||
xhci_warn(xhci, "WARN: TRB error on endpoint\n");
|
||||
status = -EILSEQ;
|
||||
break;
|
||||
case COMP_SPLIT_ERR:
|
||||
case COMP_TX_ERR:
|
||||
xhci_warn(xhci, "WARN: transfer error on endpoint\n");
|
||||
status = -EPROTO;
|
||||
|
Loading…
Reference in New Issue
Block a user