summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>1999-12-15 17:36:11 +0000
committerJason Wright <jason@cvs.openbsd.org>1999-12-15 17:36:11 +0000
commit6cca04037f2cc7c55b4bb0f2da8bae341eb9c603 (patch)
tree32a53d22455da2c2fa88f84ea780ba80d105bb87
parenta2c40f8012540fb7557ae20582e26e1824d53d38 (diff)
make dc only match pn (temporarily)
-rw-r--r--sys/dev/pci/if_dc.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/pci/if_dc.c b/sys/dev/pci/if_dc.c
index 7d1dab7946f..358e14b445a 100644
--- a/sys/dev/pci/if_dc.c
+++ b/sys/dev/pci/if_dc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_dc.c,v 1.3 1999/12/14 16:13:05 jason Exp $ */
+/* $OpenBSD: if_dc.c,v 1.4 1999/12/15 17:36:10 jason Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -157,6 +157,7 @@
* Various supported device vendors/types and their names.
*/
struct dc_type dc_devs[] = {
+#if 0
{ PCI_VENDOR_DEC, PCI_PRODUCT_DEC_21142 },
{ PCI_VENDOR_DAVICOM, PCI_PRODUCT_DAVICOM_DM9100 },
{ PCI_VENDOR_DAVICOM, PCI_PRODUCT_DAVICOM_DM9102 },
@@ -166,8 +167,11 @@ struct dc_type dc_devs[] = {
{ PCI_VENDOR_MACRONIX, PCI_PRODUCT_MACRONIX_MX98713 },
{ PCI_VENDOR_MACRONIX, PCI_PRODUCT_MACRONIX_MX98715 },
{ PCI_VENDOR_COMPEX, PCI_PRODUCT_COMPEX_98713 },
+#endif
{ PCI_VENDOR_LITEON, PCI_PRODUCT_LITEON_PNIC },
+#if 0
{ PCI_VENDOR_LITEON, PCI_PRODUCT_LITEON_PNICII },
+#endif
{ 0, 0 }
};