summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);