From 9d2876cdaebed5bc899bcb736f46788a7ae1f94b Mon Sep 17 00:00:00 2001 From: Jason Wright Date: Sun, 7 Oct 2001 23:19:56 +0000 Subject: match DTCTECH Domex DMX3194U (it's an initio in a different box) --- sys/dev/pci/iha_pci.c | 10 ++++++++-- 1 file 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); } -- cgit v1.2.3