mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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
This commit is contained in:
parent
c99b7c4e40
commit
e02f894bbe
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue