diff options
author | hselasky <hselasky@FreeBSD.org> | 2015-10-08 13:39:27 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2015-10-08 13:39:27 +0000 |
commit | 90ff179ebde58ad5fd1af585fcedb880ef89cb3a (patch) | |
tree | 3c9ff40bb6fbb9c4e0cf58b83d0997e2d4413e8f /sys/dev/usb/controller/xhci_pci.c | |
parent | 85d69264b529fecad4970d73486e9b5437160b7c (diff) | |
download | FreeBSD-src-90ff179ebde58ad5fd1af585fcedb880ef89cb3a.zip FreeBSD-src-90ff179ebde58ad5fd1af585fcedb880ef89cb3a.tar.gz |
Add quirk for USB 3.0 PCI device.
Submitted by: Gary Jennejohn <gj@freebsd.org>
MFC after: 1 week
Diffstat (limited to 'sys/dev/usb/controller/xhci_pci.c')
-rw-r--r-- | sys/dev/usb/controller/xhci_pci.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/xhci_pci.c b/sys/dev/usb/controller/xhci_pci.c index 0df2e9f..0c5ff94 100644 --- a/sys/dev/usb/controller/xhci_pci.c +++ b/sys/dev/usb/controller/xhci_pci.c @@ -199,6 +199,7 @@ xhci_pci_attach(device_t self) switch (pci_get_devid(self)) { case 0x01941033: /* NEC uPD720200 USB 3.0 controller */ + case 0x00141912: /* NEC uPD720201 USB 3.0 controller */ /* Don't use 64-bit DMA on these controllers. */ usedma32 = 1; break; |