diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2001-03-29 23:53:40 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2001-03-29 23:53:40 +0000 |
commit | ab8940e348a5e4c79aa4382da8eefc859965f706 (patch) | |
tree | ec47db4cb2deebea535ea6d64a8111dc5589ae6c /sys/dev/pci | |
parent | 1ce79a21a95fd93e51be22764369b107369a0f25 (diff) |
An INIC-940 based card supplied by Initio proves that the iha driver
does support both INIC-940 and INIC-950 chips. So allow iha to
recognize and claim INIC-940 based cards, and change documentation to
reflect new support.
Thanks to Initio for providing the card to test.
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/iha_pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/iha_pci.c b/sys/dev/pci/iha_pci.c index 98365e6d306..ae3bbb3c14b 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.1 2001/01/23 04:19:42 krw Exp $ */ +/* $OpenBSD: iha_pci.c,v 1.2 2001/03/29 23:53:38 krw Exp $ */ /* * Initio INI-9xxxU/UW SCSI Device Driver * @@ -70,6 +70,7 @@ iha_pci_probe(parent, match, aux) if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_INITIO) switch (PCI_PRODUCT(pa->pa_id)) { + case PCI_PRODUCT_INITIO_INIC940: case PCI_PRODUCT_INITIO_INIC950: return (1); } |