diff options
author | mav <mav@FreeBSD.org> | 2016-04-12 07:54:55 +0000 |
---|---|---|
committer | mav <mav@FreeBSD.org> | 2016-04-12 07:54:55 +0000 |
commit | 57d12b01ce8192ab82a77fcdffb4a187f66e81be (patch) | |
tree | 4004636dfd7f6d8777175ed3dcf56f4919ca80b7 /sys/dev/usb/controller/xhci_pci.c | |
parent | eb38e24ae4564a5913569246c2645a227e47adc7 (diff) | |
download | FreeBSD-src-57d12b01ce8192ab82a77fcdffb4a187f66e81be.zip FreeBSD-src-57d12b01ce8192ab82a77fcdffb4a187f66e81be.tar.gz |
MFC r297387: Add some device IDs found on AMD FCH shipsets.
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 48dee2c..ef1a7d6 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"); |