summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorNathan Binkert <nate@cvs.openbsd.org>2002-02-17 05:27:40 +0000
committerNathan Binkert <nate@cvs.openbsd.org>2002-02-17 05:27:40 +0000
commite86418196377f389bd849546b2798a8e72f3f747 (patch)
tree0a916b1ae1ce30a6543082d3f6ad57f28afc2c39 /sys/dev
parent76906c889bfae35918623f68fc7b056ab4b6b0ff (diff)
make dc win on alpha too
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/pci/if_dc_pci.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/dev/pci/if_dc_pci.c b/sys/dev/pci/if_dc_pci.c
index a8153a48b66..3f5c37337ab 100644
--- a/sys/dev/pci/if_dc_pci.c
+++ b/sys/dev/pci/if_dc_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_dc_pci.c,v 1.24 2002/02/17 05:12:56 nate Exp $ */
+/* $OpenBSD: if_dc_pci.c,v 1.25 2002/02/17 05:27:39 nate Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -128,11 +128,7 @@ dc_pci_match(parent, match, aux)
for (t = dc_devs; t->dc_vid != 0; t++) {
if ((PCI_VENDOR(pa->pa_id) == t->dc_vid) &&
(PCI_PRODUCT(pa->pa_id) == t->dc_did)) {
-#if defined(__alpha__)
- return (1);
-#else
return (2);
-#endif
}
}