summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-07-18 00:57:28 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-07-18 00:57:28 +0000
commit1283a7133150dd4d9f05ab276933ca253d42f09a (patch)
treee55ba76289126106b46fae0c66c6cac12deb488f
parent34e48f93086fc4799c5448f1ce7eadc860e04360 (diff)
SIS_85C503 misidenties itself; g.mcgarry@qut.edu.au
-rw-r--r--sys/arch/i386/pci/pcib.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/arch/i386/pci/pcib.c b/sys/arch/i386/pci/pcib.c
index f8e10e95a5d..11524a1a647 100644
--- a/sys/arch/i386/pci/pcib.c
+++ b/sys/arch/i386/pci/pcib.c
@@ -82,6 +82,12 @@ pcibmatch(parent, match, aux)
/* The above bridges mis-identify themselves */
return (1);
}
+ case PCI_VENDOR_SIS:
+ switch (PCI_PRODUCT(pa->pa_id)) {
+ case PCI_PRODUCT_SIS_85C503:
+ /* mis-identifies itself as a miscellaneous prehistoric */
+ return (1);
+ }
}
return (0);