From 6d5ebb7e55304cd20018cd9b99ad17b26ad0a276 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Wed, 17 Dec 2003 17:15:07 +0000 Subject: Recognize the nForce3 id's. This is mostly cosmetic and affects the usbdevs command. --- sys/dev/usb/ohci_pci.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sys') diff --git a/sys/dev/usb/ohci_pci.c b/sys/dev/usb/ohci_pci.c index 51a2c2309869f..37d4d2f31c3b5 100644 --- a/sys/dev/usb/ohci_pci.c +++ b/sys/dev/usb/ohci_pci.c @@ -78,6 +78,7 @@ __FBSDID("$FreeBSD$"); #define PCI_OHCI_VENDORID_CMDTECH 0x1095 #define PCI_OHCI_VENDORID_NEC 0x1033 #define PCI_OHCI_VENDORID_NVIDIA 0x12D2 +#define PCI_OHCI_VENDORID_NVIDIA2 0x10DE #define PCI_OHCI_VENDORID_OPTI 0x1045 #define PCI_OHCI_VENDORID_SIS 0x1039 @@ -226,6 +227,7 @@ ohci_pci_attach(device_t self) sprintf(sc->sc_vendor, "NEC"); break; case PCI_OHCI_VENDORID_NVIDIA: + case PCI_OHCI_VENDORID_NVIDIA2: sprintf(sc->sc_vendor, "nVidia"); break; case PCI_OHCI_VENDORID_OPTI: -- cgit v1.3