From 9526317aa1f5f01d746448b38fc3ea64705cc0b1 Mon Sep 17 00:00:00 2001 From: cgd Date: Tue, 20 Jun 1995 04:50:43 +0000 Subject: [PATCH] vendor IDs for Acer and SIS --- sys/dev/pci/pcidevs | 4 +++- sys/dev/pci/pcidevs.h | 2 ++ sys/dev/pci/pcidevs_data.h | 12 ++++++++++++ 3 files changed, 17 insertions(+), 1 deletion(-) diff --git a/sys/dev/pci/pcidevs b/sys/dev/pci/pcidevs index d1a159032f6a..68e4290359d9 100644 --- a/sys/dev/pci/pcidevs +++ b/sys/dev/pci/pcidevs @@ -1,4 +1,4 @@ -$NetBSD: pcidevs,v 1.1 1995/06/18 01:07:06 cgd Exp $ +$NetBSD: pcidevs,v 1.2 1995/06/20 04:50:43 cgd Exp $ /* * Copyright (c) 1995 Christopher G. Demetriou @@ -42,8 +42,10 @@ vendor CIRRUS 0x1013 Cirrus Logic vendor IBM 0x1014 IBM vendor NCR 0x101A NCR vendor AMD 0x1022 AMD +vendor ACER 0x1025 Acer vendor COMPAQ 0x1032 Compaq vendor NEC 0x1033 NEC +vendor SIS 0x1039 SIS vendor HP 0x103C Hewlett-Packard vendor KPC 0x1040 Kubota Pacific Corp. vendor TI 0x104C Texas Instruments diff --git a/sys/dev/pci/pcidevs.h b/sys/dev/pci/pcidevs.h index 2e727306f8e8..8cf648c8c52b 100644 --- a/sys/dev/pci/pcidevs.h +++ b/sys/dev/pci/pcidevs.h @@ -47,8 +47,10 @@ #define PCI_VENDOR_IBM 0x1014 /* IBM */ #define PCI_VENDOR_NCR 0x101A /* NCR */ #define PCI_VENDOR_AMD 0x1022 /* AMD */ +#define PCI_VENDOR_ACER 0x1025 /* Acer */ #define PCI_VENDOR_COMPAQ 0x1032 /* Compaq */ #define PCI_VENDOR_NEC 0x1033 /* NEC */ +#define PCI_VENDOR_SIS 0x1039 /* SIS */ #define PCI_VENDOR_HP 0x103C /* Hewlett-Packard */ #define PCI_VENDOR_KPC 0x1040 /* Kubota Pacific Corp. */ #define PCI_VENDOR_TI 0x104C /* Texas Instruments */ diff --git a/sys/dev/pci/pcidevs_data.h b/sys/dev/pci/pcidevs_data.h index 9c2cdb88db0e..f00797681d96 100644 --- a/sys/dev/pci/pcidevs_data.h +++ b/sys/dev/pci/pcidevs_data.h @@ -235,6 +235,12 @@ struct pci_knowndev pci_knowndevs[] = { "AMD", NULL, }, + { + PCI_VENDOR_ACER, 0, + PCI_KNOWNDEV_UNSUPP | PCI_KNOWNDEV_NOPROD, + "Acer", + NULL, + }, { PCI_VENDOR_COMPAQ, 0, PCI_KNOWNDEV_UNSUPP | PCI_KNOWNDEV_NOPROD, @@ -247,6 +253,12 @@ struct pci_knowndev pci_knowndevs[] = { "NEC", NULL, }, + { + PCI_VENDOR_SIS, 0, + PCI_KNOWNDEV_UNSUPP | PCI_KNOWNDEV_NOPROD, + "SIS", + NULL, + }, { PCI_VENDOR_HP, 0, PCI_KNOWNDEV_UNSUPP | PCI_KNOWNDEV_NOPROD,