diff options
author | alfred <alfred@FreeBSD.org> | 2009-07-30 00:12:47 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2009-07-30 00:12:47 +0000 |
commit | 2d98a74a82e33fdb4403f1be9e566096661070fd (patch) | |
tree | ccae8d415b27b7c7397ea8e57666c1a0577bb539 /sys/dev/usb/controller/uhci_pci.c | |
parent | 6c89a5f102e50c4c64fe2243108d70c38997ccec (diff) | |
download | FreeBSD-src-2d98a74a82e33fdb4403f1be9e566096661070fd.zip FreeBSD-src-2d98a74a82e33fdb4403f1be9e566096661070fd.tar.gz |
USB controller:
- patch from Alexander Motin <mav@freebsd.org>
- add more ID's
- P4 ID: 165805
Submitted by: hps
Approved by: re
Diffstat (limited to 'sys/dev/usb/controller/uhci_pci.c')
-rw-r--r-- | sys/dev/usb/controller/uhci_pci.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/uhci_pci.c b/sys/dev/usb/controller/uhci_pci.c index 4fcf5d3..ba155be 100644 --- a/sys/dev/usb/controller/uhci_pci.c +++ b/sys/dev/usb/controller/uhci_pci.c @@ -200,6 +200,15 @@ uhci_pci_match(device_t self) case 0x265b8086: return ("Intel 82801FB/FR/FW/FRW (ICH6) USB controller USB-D"); + case 0x27c88086: + return ("Intel 82801G (ICH7) USB controller USB-A"); + case 0x27c98086: + return ("Intel 82801G (ICH7) USB controller USB-B"); + case 0x27ca8086: + return ("Intel 82801G (ICH7) USB controller USB-C"); + case 0x27cb8086: + return ("Intel 82801G (ICH7) USB controller USB-D"); + case 0x28308086: return ("Intel 82801H (ICH8) USB controller USB-A"); case 0x28318086: |