diff options
author | Saurav Kashyap <saurav.kashyap@qlogic.com> | 2011-11-18 09:02:11 -0800 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2011-12-12 12:33:50 +0400 |
commit | be5ea3cfa15ddef0bee9dfbc214c2113119087a2 (patch) | |
tree | 8023725ed455efb1651047ec1abc84187c8af48c /drivers/scsi/qla2xxx | |
parent | 4e85e3d92fd1b52989882062f5cb143a31375b62 (diff) | |
download | op-kernel-dev-be5ea3cfa15ddef0bee9dfbc214c2113119087a2.zip op-kernel-dev-be5ea3cfa15ddef0bee9dfbc214c2113119087a2.tar.gz |
[SCSI] qla2xxx: Don't call alloc_fw_dump for ISP82XX.
Signed-off-by: Saurav Kashyap <saurav.kashyap@qlogic.com>
Signed-off-by: Chad Dupuis <chad.dupuis@qlogic.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/qla2xxx')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/qla2xxx/qla_init.c b/drivers/scsi/qla2xxx/qla_init.c index f03e915f..54ea68c 100644 --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c @@ -1509,7 +1509,8 @@ enable_82xx_npiv: &ha->fw_xcb_count, NULL, NULL, &ha->max_npiv_vports, NULL); - if (!fw_major_version && ql2xallocfwdump) + if (!fw_major_version && ql2xallocfwdump + && !IS_QLA82XX(ha)) qla2x00_alloc_fw_dump(vha); } } else { |