diff options
| author | 2003-02-28 15:14:08 +0000 | |
|---|---|---|
| committer | 2003-02-28 15:14:08 +0000 | |
| commit | c139eebbca2d3c9a48157f9b48fc7815c640a55c (patch) | |
| tree | ff234309299cfdc62647b7e99f46accc4f737bab /sys/dev/pci/isp_pci.c | |
| parent | Fix more evil typos. (diff) | |
| download | wireguard-openbsd-c139eebbca2d3c9a48157f9b48fc7815c640a55c.tar.xz wireguard-openbsd-c139eebbca2d3c9a48157f9b48fc7815c640a55c.zip | |
typo; from weissmanndude
Diffstat (limited to 'sys/dev/pci/isp_pci.c')
| -rw-r--r-- | sys/dev/pci/isp_pci.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/pci/isp_pci.c b/sys/dev/pci/isp_pci.c index a848fddfc9f..8b05606ee22 100644 --- a/sys/dev/pci/isp_pci.c +++ b/sys/dev/pci/isp_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isp_pci.c,v 1.29 2002/08/17 17:35:48 mjacob Exp $ */ +/* $OpenBSD: isp_pci.c,v 1.30 2003/02/28 15:14:08 mickey Exp $ */ /* * PCI specific probe and attach routines for Qlogic ISP SCSI adapters. * @@ -323,6 +323,11 @@ isp_pci_probe(struct device *parent, void *match, void *aux) { struct pci_attach_args *pa = aux; + /* those are raid puppies */ + if (PCI_VENDOR(pci_conf_read(pa->pa_pc, pa->pa_tag, + PCI_SUBSYS_ID_REG)) == PCI_VENDOR_AMI) + return (0); + switch (pa->pa_id) { #ifndef ISP_DISABLE_1020_SUPPORT case PCI_QLOGIC_ISP: |
