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/ohci_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/ohci_pci.c')
-rw-r--r-- | sys/dev/usb/controller/ohci_pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/usb/controller/ohci_pci.c b/sys/dev/usb/controller/ohci_pci.c index c50de54..96950a7 100644 --- a/sys/dev/usb/controller/ohci_pci.c +++ b/sys/dev/usb/controller/ohci_pci.c @@ -124,9 +124,10 @@ ohci_pci_match(device_t self) case 0x740c1022: return ("AMD-756 USB Controller"); - case 0x74141022: return ("AMD-766 USB Controller"); + case 0x78071022: + return ("AMD FCH USB Controller"); case 0x43741002: return "ATI SB400 USB Controller"; |