diff options
author | 2001-10-07 23:19:55 +0000 | |
---|---|---|
committer | 2001-10-07 23:19:55 +0000 | |
commit | b6db592cd5957744836bb8a6da988aeb972fbc45 (patch) | |
tree | 715f02a96b1ba836a4ed493cce44067e47a9bf95 | |
parent | Clean up fdrelease. (diff) | |
download | wireguard-openbsd-b6db592cd5957744836bb8a6da988aeb972fbc45.tar.xz wireguard-openbsd-b6db592cd5957744836bb8a6da988aeb972fbc45.zip |
match DTCTECH Domex DMX3194U (it's an initio in a different box)
-rw-r--r-- | sys/dev/pci/iha_pci.c | 10 |
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); } |