diff options
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/pcidevs.h | 4 | ||||
-rw-r--r-- | sys/dev/pci/pcidevs_data.h | 8 |
2 files changed, 12 insertions, 0 deletions
diff --git a/sys/dev/pci/pcidevs.h b/sys/dev/pci/pcidevs.h index 9d0c253da2c..d7cf9449c5a 100644 --- a/sys/dev/pci/pcidevs.h +++ b/sys/dev/pci/pcidevs.h @@ -113,6 +113,7 @@ #define PCI_VENDOR_SUN 0x108e /* Sun */ #define PCI_VENDOR_INTERGRAPH 0x1091 /* Intergraph */ #define PCI_VENDOR_DIAMOND 0x1092 /* Diamond Multimedia */ +#define PCI_VENDOR_NATINST 0x1093 /* National Instruments */ #define PCI_VENDOR_CMDTECH 0x1095 /* CMD Technology */ #define PCI_VENDOR_QUANTUMDESIGNS 0x1098 /* Quantum Designs */ #define PCI_VENDOR_BROOKTREE 0x109e /* Brooktree */ @@ -2217,6 +2218,9 @@ #define PCI_PRODUCT_NDC_NCP130 0x0130 /* NCP130 */ #define PCI_PRODUCT_NDC_NCP130A2 0x0131 /* NCP130 Rev A2 */ +/* National Instruments */ +#define PCI_PRODUCT_NATINST_PCIGPIB 0xc801 /* PCI-GPIB */ + /* National Semiconductor products */ #define PCI_PRODUCT_NS_DP83810 0x0001 /* DP83810 10/100 */ #define PCI_PRODUCT_NS_PC87415 0x0002 /* PC87415 IDE */ diff --git a/sys/dev/pci/pcidevs_data.h b/sys/dev/pci/pcidevs_data.h index 7ae5118fd25..ae52bcd2638 100644 --- a/sys/dev/pci/pcidevs_data.h +++ b/sys/dev/pci/pcidevs_data.h @@ -6551,6 +6551,10 @@ static const struct pci_known_product pci_known_products[] = { "NCP130 Rev A2", }, { + PCI_VENDOR_NATINST, PCI_PRODUCT_NATINST_PCIGPIB, + "PCI-GPIB", + }, + { PCI_VENDOR_NS, PCI_PRODUCT_NS_DP83810, "DP83810 10/100", }, @@ -11423,6 +11427,10 @@ static const struct pci_known_vendor pci_known_vendors[] = { "Diamond Multimedia", }, { + PCI_VENDOR_NATINST, + "National Instruments", + }, + { PCI_VENDOR_CMDTECH, "CMD Technology", }, |