From e02f894bbee606cad406ec51cc1bb0f89544c94f Mon Sep 17 00:00:00 2001 From: Hans Petter Selasky Date: Fri, 13 Jan 2012 22:19:14 +0000 Subject: [PATCH] Bugfix: Make sure the XHCI driver doesn't clear the route string field. Else USB 3.0 HUBs won't work. MFC after: 5 days --- sys/dev/usb/controller/xhci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/usb/controller/xhci.c b/sys/dev/usb/controller/xhci.c index 2d1ec92be49..a9690f9775f 100644 --- a/sys/dev/usb/controller/xhci.c +++ b/sys/dev/usb/controller/xhci.c @@ -2264,7 +2264,7 @@ xhci_configure_device(struct usb_device *udev) temp |= XHCI_SCTX_0_CTX_NUM_SET(XHCI_MAX_ENDPOINTS - 1); break; default: - temp = XHCI_SCTX_0_CTX_NUM_SET(1); + temp |= XHCI_SCTX_0_CTX_NUM_SET(1); break; }