diff options
author | mav <mav@FreeBSD.org> | 2016-03-29 12:50:42 +0000 |
---|---|---|
committer | mav <mav@FreeBSD.org> | 2016-03-29 12:50:42 +0000 |
commit | 41da32dc72329e3d0e038a6f4a7c636ca8ffa7bd (patch) | |
tree | a7415734c5f338dfbbac46097b660348655d3109 /sys/dev/usb/controller/xhci_pci.c | |
parent | 785acb1fd1aaf89dd999d77811e0a5d890c157f4 (diff) | |
download | FreeBSD-src-41da32dc72329e3d0e038a6f4a7c636ca8ffa7bd.zip FreeBSD-src-41da32dc72329e3d0e038a6f4a7c636ca8ffa7bd.tar.gz |
Add some device IDs found on AMD FCH shipsets.
MFC after: 2 weeks
Diffstat (limited to 'sys/dev/usb/controller/xhci_pci.c')
-rw-r--r-- | sys/dev/usb/controller/xhci_pci.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/xhci_pci.c b/sys/dev/usb/controller/xhci_pci.c index 7d2d6ba..d4355e9 100644 --- a/sys/dev/usb/controller/xhci_pci.c +++ b/sys/dev/usb/controller/xhci_pci.c @@ -95,6 +95,9 @@ xhci_pci_match(device_t self) uint32_t device_id = pci_get_devid(self); switch (device_id) { + case 0x78141022: + return ("AMD FCH USB 3.0 controller"); + case 0x01941033: return ("NEC uPD720200 USB 3.0 controller"); |