mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
scsi: qla2xxx: Remove redundant assignment to rval
Variable rval is set to QLA_SUCCESS but this value is never read as it is overwritten later on. Hence it is a redundant assignment and can be removed. Clean up the following clang-analyzer warning: drivers/scsi/qla2xxx/qla_init.c:4359:2: warning: Value stored to 'rval' is never read [clang-analyzer-deadcode.DeadStores]. Link: https://lore.kernel.org/r/1620643206-127930-1-git-send-email-jiapeng.chong@linux.alibaba.com Reported-by: Abaci Robot <abaci@linux.alibaba.com> Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
5ac3c649f1
commit
cb9eb11fd5
@ -4356,8 +4356,6 @@ qla2x00_fw_ready(scsi_qla_host_t *vha)
|
|||||||
if (IS_QLAFX00(vha->hw))
|
if (IS_QLAFX00(vha->hw))
|
||||||
return qlafx00_fw_ready(vha);
|
return qlafx00_fw_ready(vha);
|
||||||
|
|
||||||
rval = QLA_SUCCESS;
|
|
||||||
|
|
||||||
/* Time to wait for loop down */
|
/* Time to wait for loop down */
|
||||||
if (IS_P3P_TYPE(ha))
|
if (IS_P3P_TYPE(ha))
|
||||||
min_wait = 30;
|
min_wait = 30;
|
||||||
|
Loading…
Reference in New Issue
Block a user