aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb/controller
diff options
context:
space:
mode:
authorHans Petter Selasky <hselasky@FreeBSD.org>2014-02-23 13:27:19 +0000
committerHans Petter Selasky <hselasky@FreeBSD.org>2014-02-23 13:27:19 +0000
commit277c34dccc52b6ded1e12dfa0041bc350314f711 (patch)
treec84873cb293cf89f521ec54c1994af9385319582 /sys/dev/usb/controller
parent782b72029c3a5181685c2353c78df36a648b7aa8 (diff)
Notes
Diffstat (limited to 'sys/dev/usb/controller')
-rw-r--r--sys/dev/usb/controller/xhci_pci.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/xhci_pci.c b/sys/dev/usb/controller/xhci_pci.c
index 4e300158ec14..7abbf077ad97 100644
--- a/sys/dev/usb/controller/xhci_pci.c
+++ b/sys/dev/usb/controller/xhci_pci.c
@@ -102,6 +102,7 @@ xhci_pci_match(device_t self)
case 0x10421b21:
return ("ASMedia ASM1042 USB 3.0 controller");
+ case 0x9c318086:
case 0x1e318086:
return ("Intel Panther Point USB 3.0 controller");
case 0x8c318086:
@@ -221,6 +222,7 @@ xhci_pci_attach(device_t self)
}
/* On Intel chipsets reroute ports from EHCI to XHCI controller. */
switch (pci_get_devid(self)) {
+ case 0x9c318086: /* Panther Point */
case 0x1e318086: /* Panther Point */
case 0x8c318086: /* Lynx Point */
sc->sc_port_route = &xhci_pci_port_route;