diff options
author | 2014-04-03 20:01:47 +0000 | |
---|---|---|
committer | 2014-04-03 20:01:47 +0000 | |
commit | 833e730f43a0fadfc5113125f8d1117c2dbac64d (patch) | |
tree | 96f7133b437c7486d078a02887c267f49ca0f2c7 | |
parent | Do not keep the EOP check bits in PGF_PRESERVE. (diff) | |
download | wireguard-openbsd-833e730f43a0fadfc5113125f8d1117c2dbac64d.tar.xz wireguard-openbsd-833e730f43a0fadfc5113125f8d1117c2dbac64d.zip |
Add the missing 6322 PCI id.
ok jmatthew@
-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; |