bnxt_en: Fix static checker warning in bnxt_fw_reset_task()
Now that we return when bnxt_open() fails in bnxt_fw_reset_task(),
there is no need to check for 'rc' value again before invoking
bnxt_reenable_sriov().
Fixes: 3958b1da72
("bnxt_en: fix error path of FW reset")
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Somnath Kotur <somnath.kotur@broadcom.com>
Signed-off-by: Michael Chan <michael.chan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
92766c4628
commit
758684e49f
|
@ -12131,9 +12131,8 @@ static void bnxt_fw_reset_task(struct work_struct *work)
|
||||||
/* Make sure fw_reset_state is 0 before clearing the flag */
|
/* Make sure fw_reset_state is 0 before clearing the flag */
|
||||||
smp_mb__before_atomic();
|
smp_mb__before_atomic();
|
||||||
clear_bit(BNXT_STATE_IN_FW_RESET, &bp->state);
|
clear_bit(BNXT_STATE_IN_FW_RESET, &bp->state);
|
||||||
bnxt_ulp_start(bp, rc);
|
bnxt_ulp_start(bp, 0);
|
||||||
if (!rc)
|
bnxt_reenable_sriov(bp);
|
||||||
bnxt_reenable_sriov(bp);
|
|
||||||
bnxt_vf_reps_alloc(bp);
|
bnxt_vf_reps_alloc(bp);
|
||||||
bnxt_vf_reps_open(bp);
|
bnxt_vf_reps_open(bp);
|
||||||
bnxt_dl_health_recovery_done(bp);
|
bnxt_dl_health_recovery_done(bp);
|
||||||
|
|
Loading…
Reference in New Issue