diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-12-03 23:24:12 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-12-03 23:24:12 +0000 |
commit | 9f94f2e9dc186c6f235e6a985d3e807168f27770 (patch) | |
tree | 9e3748759731e3ee678858993f6256a35489644f /sys/dev/usb/controller/uhci_pci.c | |
parent | f018f4f59913004a6a8893cc03a2133129724f49 (diff) | |
download | FreeBSD-src-9f94f2e9dc186c6f235e6a985d3e807168f27770.zip FreeBSD-src-9f94f2e9dc186c6f235e6a985d3e807168f27770.tar.gz |
Add uhci/ehci controller ids.
Submitted by: mitya_cabletv.dp.ua
Diffstat (limited to 'sys/dev/usb/controller/uhci_pci.c')
-rw-r--r-- | sys/dev/usb/controller/uhci_pci.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/uhci_pci.c b/sys/dev/usb/controller/uhci_pci.c index 7609b0f..4c4e861 100644 --- a/sys/dev/usb/controller/uhci_pci.c +++ b/sys/dev/usb/controller/uhci_pci.c @@ -230,6 +230,18 @@ uhci_pci_match(device_t self) return ("Intel 82801I (ICH9) USB controller"); case 0x29398086: return ("Intel 82801I (ICH9) USB controller"); + case 0x3a348086: + return ("Intel 82801IJ (ICH10) USB controller USB-A"); + case 0x3a358086: + return ("Intel 82801IJ (ICH10) USB controller USB-B"); + case 0x3a368086: + return ("Intel 82801IJ (ICH10) USB controller USB-C"); + case 0x3a378086: + return ("Intel 82801IJ (ICH10) USB controller USB-D"); + case 0x3a388086: + return ("Intel 82801IJ (ICH10) USB controller USB-E"); + case 0x3a398086: + return ("Intel 82801IJ (ICH10) USB controller USB-F"); case 0x719a8086: return ("Intel 82443MX USB controller"); |