diff options
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/pcidevs_data.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sys/dev/pci/pcidevs_data.h b/sys/dev/pci/pcidevs_data.h index 67302cf1748..3f8bb46a04a 100644 --- a/sys/dev/pci/pcidevs_data.h +++ b/sys/dev/pci/pcidevs_data.h @@ -4,6 +4,7 @@ * generated from: * OpenBSD: pcidevs,v 1.1224 2007/03/31 11:42:05 reyk Exp */ + /* $NetBSD: pcidevs,v 1.30 1997/06/24 06:20:24 thorpej Exp $ */ /* @@ -37,6 +38,18 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +/* Descriptions of known vendors and devices. */ +struct pci_known_vendor { + pci_vendor_id_t vendor; + const char *vendorname; +}; + +struct pci_known_product { + pci_vendor_id_t vendor; + pci_product_id_t product; + const char *productname; +}; + static const struct pci_known_product pci_known_products[] = { { PCI_VENDOR_O2MICRO, PCI_PRODUCT_O2MICRO_OZ6729, |