diff options
-rw-r--r-- | drivers/scsi/qla2xxx/qla_attr.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/scsi/qla2xxx/qla_attr.c b/drivers/scsi/qla2xxx/qla_attr.c index c272af4a76e4..d416c3599e38 100644 --- a/drivers/scsi/qla2xxx/qla_attr.c +++ b/drivers/scsi/qla2xxx/qla_attr.c | |||
@@ -1198,9 +1198,11 @@ qla24xx_84xx_fw_version_show(struct device *dev, | |||
1198 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); | 1198 | scsi_qla_host_t *vha = shost_priv(class_to_shost(dev)); |
1199 | struct qla_hw_data *ha = vha->hw; | 1199 | struct qla_hw_data *ha = vha->hw; |
1200 | 1200 | ||
1201 | if (IS_QLA84XX(ha) && ha->cs84xx) | 1201 | if (!IS_QLA84XX(ha)) |
1202 | if (ha->cs84xx->op_fw_version == 0) | 1202 | return snprintf(buf, PAGE_SIZE, "\n"); |
1203 | rval = qla84xx_verify_chip(vha, status); | 1203 | |
1204 | if (ha->cs84xx && ha->cs84xx->op_fw_version == 0) | ||
1205 | rval = qla84xx_verify_chip(vha, status); | ||
1204 | 1206 | ||
1205 | if ((rval == QLA_SUCCESS) && (status[0] == 0)) | 1207 | if ((rval == QLA_SUCCESS) && (status[0] == 0)) |
1206 | return snprintf(buf, PAGE_SIZE, "%u\n", | 1208 | return snprintf(buf, PAGE_SIZE, "%u\n", |