diff options
author | thompsa <thompsa@FreeBSD.org> | 2009-12-22 01:57:34 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2009-12-22 01:57:34 +0000 |
commit | d9e89909f689d433720160db8919d5eaf39d6eee (patch) | |
tree | dc7eef8b9d8b892d423c33d4766a846fe0989e43 /sys/dev/usb/controller | |
parent | 3edd147826811d68c173891011e586667f465361 (diff) | |
download | FreeBSD-src-d9e89909f689d433720160db8919d5eaf39d6eee.zip FreeBSD-src-d9e89909f689d433720160db8919d5eaf39d6eee.tar.gz |
Add more EHCI pci ids.
Submitted by: Hans Petter Selasky
Diffstat (limited to 'sys/dev/usb/controller')
-rw-r--r-- | sys/dev/usb/controller/ehci_pci.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/ehci_pci.c b/sys/dev/usb/controller/ehci_pci.c index e68df3e..17ec65a 100644 --- a/sys/dev/usb/controller/ehci_pci.c +++ b/sys/dev/usb/controller/ehci_pci.c @@ -197,6 +197,10 @@ ehci_pci_match(device_t self) return "Intel 82801JI (ICH10) USB 2.0 controller USB-A"; case 0x3a3c8086: return "Intel 82801JI (ICH10) USB 2.0 controller USB-B"; + case 0x3b348086: + return ("Intel PCH USB 2.0 controller USB-A"); + case 0x3b3c8086: + return ("Intel PCH USB 2.0 controller USB-B"); case 0x00e01033: return ("NEC uPD 720100 USB 2.0 controller"); @@ -213,6 +217,12 @@ ehci_pci_match(device_t self) return "NVIDIA nForce4 USB 2.0 controller"; case 0x03f210de: return "NVIDIA nForce MCP61 USB 2.0 controller"; + case 0x0aa610de: + return "NVIDIA nForce MCP79 USB 2.0 controller"; + case 0x0aa910de: + return "NVIDIA nForce MCP79 USB 2.0 controller"; + case 0x0aaa10de: + return "NVIDIA nForce MCP79 USB 2.0 controller"; case 0x15621131: return "Philips ISP156x USB 2.0 controller"; |