aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/host/xhci-ring.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c
index 1fc0decfa0ac..0903e98989ec 100644
--- a/drivers/usb/host/xhci-ring.c
+++ b/drivers/usb/host/xhci-ring.c
@@ -876,6 +876,10 @@ static int handle_tx_event(struct xhci_hcd *xhci,
876 xhci_warn(xhci, "WARN: transfer error on endpoint\n"); 876 xhci_warn(xhci, "WARN: transfer error on endpoint\n");
877 status = -EPROTO; 877 status = -EPROTO;
878 break; 878 break;
879 case COMP_BABBLE:
880 xhci_warn(xhci, "WARN: babble error on endpoint\n");
881 status = -EOVERFLOW;
882 break;
879 case COMP_DB_ERR: 883 case COMP_DB_ERR:
880 xhci_warn(xhci, "WARN: HC couldn't access mem fast enough\n"); 884 xhci_warn(xhci, "WARN: HC couldn't access mem fast enough\n");
881 status = -ENOSR; 885 status = -ENOSR;