summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2001-10-07 23:19:56 +0000
committerJason Wright <jason@cvs.openbsd.org>2001-10-07 23:19:56 +0000
commit9d2876cdaebed5bc899bcb736f46788a7ae1f94b (patch)
tree6e797578279df5b88f23e6cb8f36bd1d36c2ca1e
parent25482fe0e272ed5d4e37d0b59e428b4a3decbaf9 (diff)
match DTCTECH Domex DMX3194U (it's an initio in a different box)
-rw-r--r--sys/dev/pci/iha_pci.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/dev/pci/iha_pci.c b/sys/dev/pci/iha_pci.c
index facf81785fe..541e7b77ebe 100644
--- a/sys/dev/pci/iha_pci.c
+++ b/sys/dev/pci/iha_pci.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: iha_pci.c,v 1.5 2001/08/25 10:13:29 art Exp $ */
+/* $OpenBSD: iha_pci.c,v 1.6 2001/10/07 23:19:55 jason Exp $ */
/*
* Initio INI-9xxxU/UW SCSI Device Driver
*
@@ -73,7 +73,13 @@ iha_pci_probe(parent, match, aux)
case PCI_PRODUCT_INITIO_INIC940:
case PCI_PRODUCT_INITIO_INIC950:
return (1);
- }
+ }
+
+ if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_DTCTECH)
+ switch (PCI_PRODUCT(pa->pa_id)) {
+ case PCI_PRODUCT_DTCTECH_DMX3194U:
+ return (1);
+ }
return (0);
}