diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2014-04-03 20:01:48 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2014-04-03 20:01:48 +0000 |
commit | 0c0a33505212dc6d0a24bf37768c373e05c57286 (patch) | |
tree | 2d76f9a035ced3132869e6b03165b2ac69032355 /sys | |
parent | cdefc4c4a69be6f8926717f39bd0cb30fbc1928e (diff) |
Add the missing 6322 PCI id.
ok jmatthew@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/qla_pci.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/pci/qla_pci.c b/sys/dev/pci/qla_pci.c index d3202f0dbc6..0a348a29047 100644 --- a/sys/dev/pci/qla_pci.c +++ b/sys/dev/pci/qla_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: qla_pci.c,v 1.7 2014/03/09 20:23:43 kettenis Exp $ */ +/* $OpenBSD: qla_pci.c,v 1.8 2014/04/03 20:01:47 brad Exp $ */ /* * Copyright (c) 2011 David Gwynne <dlg@openbsd.org> @@ -75,6 +75,7 @@ static const struct pci_matchid qla_devices[] = { { PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP2312 }, { PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP2322 }, { PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP6312 }, + { PCI_VENDOR_QLOGIC, PCI_PRODUCT_QLOGIC_ISP6322 }, }; int @@ -179,6 +180,7 @@ qla_pci_attach(struct device *parent, struct device *self, void *aux) break; case PCI_PRODUCT_QLOGIC_ISP2322: + case PCI_PRODUCT_QLOGIC_ISP6322: sc->sc_isp_type = QLA_ISP2322; sc->sc_isp_gen = QLA_GEN_ISP23XX; break; |