summaryrefslogtreecommitdiffstats
path: root/drivers/scsi/qla2xxx/qla_os.c
diff options
context:
space:
mode:
authorAndrew Vasquez2006-12-14 04:20:29 +0100
committerJames Bottomley2007-01-03 23:57:58 +0100
commit8bc69e7dc307d6195d92fa87da1fcbae6e5dda69 (patch)
treee1f4b20aa38abb4ce3377b823330ac51539a6d68 /drivers/scsi/qla2xxx/qla_os.c
parent[SCSI] qla2xxx: Detect GPSC capabilities within a fabric. (diff)
downloadkernel-qcow2-linux-8bc69e7dc307d6195d92fa87da1fcbae6e5dda69.tar.gz
kernel-qcow2-linux-8bc69e7dc307d6195d92fa87da1fcbae6e5dda69.tar.xz
kernel-qcow2-linux-8bc69e7dc307d6195d92fa87da1fcbae6e5dda69.zip
[SCSI] qla2xxx: Correct IOCB queueing mechanism for ISP54XX HBAs.
Original code would incorrectly use non-24xx code-paths. Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_os.c')
-rw-r--r--drivers/scsi/qla2xxx/qla_os.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_os.c b/drivers/scsi/qla2xxx/qla_os.c
index d03523d3bf38..36657fa3aa43 100644
--- a/drivers/scsi/qla2xxx/qla_os.c
+++ b/drivers/scsi/qla2xxx/qla_os.c
@@ -1413,7 +1413,9 @@ qla2x00_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
sht = &qla2x00_driver_template;
if (pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2422 ||
- pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432)
+ pdev->device == PCI_DEVICE_ID_QLOGIC_ISP2432 ||
+ pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5422 ||
+ pdev->device == PCI_DEVICE_ID_QLOGIC_ISP5432)
sht = &qla24xx_driver_template;
host = scsi_host_alloc(sht, sizeof(scsi_qla_host_t));
if (host == NULL) {