mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-16 09:13:55 +08:00
USB: xhci: Handle babble errors on transfers.
Pass back a babble error when this error code is seen in the transfer event TRB. 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
47692d179f
commit
4a73143ced
@ -876,6 +876,10 @@ static int handle_tx_event(struct xhci_hcd *xhci,
|
||||
xhci_warn(xhci, "WARN: transfer error on endpoint\n");
|
||||
status = -EPROTO;
|
||||
break;
|
||||
case COMP_BABBLE:
|
||||
xhci_warn(xhci, "WARN: babble error on endpoint\n");
|
||||
status = -EOVERFLOW;
|
||||
break;
|
||||
case COMP_DB_ERR:
|
||||
xhci_warn(xhci, "WARN: HC couldn't access mem fast enough\n");
|
||||
status = -ENOSR;
|
||||
|
Loading…
Reference in New Issue
Block a user