mirror of https://gitee.com/openkylin/linux.git
[SCSI] qla2xxx: Attempt to stop firmware only if it had been previously executed.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
a7b6184225
commit
75edf81d33
|
@ -3931,6 +3931,8 @@ qla2x00_try_to_stop_firmware(scsi_qla_host_t *ha)
|
||||||
|
|
||||||
if (!IS_QLA24XX(ha) && !IS_QLA54XX(ha))
|
if (!IS_QLA24XX(ha) && !IS_QLA54XX(ha))
|
||||||
return;
|
return;
|
||||||
|
if (!ha->fw_major_version)
|
||||||
|
return;
|
||||||
|
|
||||||
ret = qla2x00_stop_firmware(ha);
|
ret = qla2x00_stop_firmware(ha);
|
||||||
for (retries = 5; ret != QLA_SUCCESS && retries ; retries--) {
|
for (retries = 5; ret != QLA_SUCCESS && retries ; retries--) {
|
||||||
|
|
Loading…
Reference in New Issue