Commit 8a318fe1 authored by Bart Van Assche's avatar Bart Van Assche Committed by James Bottomley

qla2xxx: Remove dead code

The "return QLA_SUCCESS" statement just above the "fw_load_failed"
label cannot be reached, hence remove it. Additionally remove the
"else" keyword since the code block below the if-statement ends
with a return statement.
Signed-off-by: default avatarBart Van Assche <bart.vanassche@sandisk.com>
Acked-by: default avatarHimanshu Madhani <himanshu.madhani@qlogic.com>
Signed-off-by: default avatarJames Bottomley <JBottomley@Odin.com>
parent 82e6afd4
...@@ -2473,14 +2473,12 @@ qla82xx_load_fw(scsi_qla_host_t *vha) ...@@ -2473,14 +2473,12 @@ qla82xx_load_fw(scsi_qla_host_t *vha)
ql_log(ql_log_info, vha, 0x00a5, ql_log(ql_log_info, vha, 0x00a5,
"Firmware loaded successfully from binary blob.\n"); "Firmware loaded successfully from binary blob.\n");
return QLA_SUCCESS; return QLA_SUCCESS;
} else {
ql_log(ql_log_fatal, vha, 0x00a6,
"Firmware load failed for binary blob.\n");
blob->fw = NULL;
blob = NULL;
goto fw_load_failed;
} }
return QLA_SUCCESS;
ql_log(ql_log_fatal, vha, 0x00a6,
"Firmware load failed for binary blob.\n");
blob->fw = NULL;
blob = NULL;
fw_load_failed: fw_load_failed:
return QLA_FUNCTION_FAILED; return QLA_FUNCTION_FAILED;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment