diff options
author | thompsa <thompsa@FreeBSD.org> | 2010-04-06 23:30:02 +0000 |
---|---|---|
committer | thompsa <thompsa@FreeBSD.org> | 2010-04-06 23:30:02 +0000 |
commit | f0d1b78b6e1f57c696969c144311ffd65f6c8aec (patch) | |
tree | 9592e7bddfc628974578f6cb0b834cb5713a9813 | |
parent | 28c01d61b3775d08ff47aa593e275e2d7c0c8c77 (diff) | |
download | FreeBSD-src-f0d1b78b6e1f57c696969c144311ffd65f6c8aec.zip FreeBSD-src-f0d1b78b6e1f57c696969c144311ffd65f6c8aec.tar.gz |
MFC r205802
Add PCI IDs for two more nForce controllers.
Submitted by: Dmitry Luhtionov @ gmail.com
-rw-r--r-- | sys/dev/usb/controller/ehci_pci.c | 2 | ||||
-rw-r--r-- | sys/dev/usb/controller/ohci_pci.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/usb/controller/ehci_pci.c b/sys/dev/usb/controller/ehci_pci.c index c81122b..bd7afcf 100644 --- a/sys/dev/usb/controller/ehci_pci.c +++ b/sys/dev/usb/controller/ehci_pci.c @@ -215,6 +215,8 @@ ehci_pci_match(device_t self) return "NVIDIA nForce3 250 USB 2.0 controller"; case 0x005b10de: return "NVIDIA nForce4 USB 2.0 controller"; + case 0x036d10de: + return "NVIDIA nForce MCP55 USB 2.0 controller"; case 0x03f210de: return "NVIDIA nForce MCP61 USB 2.0 controller"; case 0x0aa610de: diff --git a/sys/dev/usb/controller/ohci_pci.c b/sys/dev/usb/controller/ohci_pci.c index 3959471..a4fcd9f 100644 --- a/sys/dev/usb/controller/ohci_pci.c +++ b/sys/dev/usb/controller/ohci_pci.c @@ -173,6 +173,8 @@ ohci_pci_match(device_t self) case 0x00d710de: return ("nVidia nForce3 USB Controller"); + case 0x036c10de: + return ("nVidia nForce MCP55 USB Controller"); case 0x03f110de: return ("nVidia nForce MCP61 USB Controller"); case 0x0aa510de: |