scsi: qla4xxx: Remove redundant assignment to variable rval
The variable rval is being initialized with a value that is never read and it is being updated later with a new value. The initialization is redundant and can be removed. Link: https://lore.kernel.org/r/20201204191810.1150995-1-colin.king@canonical.com Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Addresses-Coverity: ("Unused value")
This commit is contained in:
parent
8f525bc2a7
commit
3a5b9fa2cc
@ -1767,7 +1767,7 @@ qla4_82xx_start_firmware(struct scsi_qla_host *ha, uint32_t image_start)
|
||||
|
||||
int qla4_82xx_try_start_fw(struct scsi_qla_host *ha)
|
||||
{
|
||||
int rval = QLA_ERROR;
|
||||
int rval;
|
||||
|
||||
/*
|
||||
* FW Load priority:
|
||||
|
Loading…
Reference in New Issue
Block a user