Message ID | 20220419065750.2573861-1-deng.changcheng@zte.com.cn |
---|---|
State | New |
Headers | show |
Series | scsi: lpfc: Remove unneeded variable | expand |
On Tue, 19 Apr 2022 06:57:50 +0000, cgel.zte@gmail.com wrote: > From: Changcheng Deng <deng.changcheng@zte.com.cn> > > Remove unneeded variable used to store return value. > > Applied to 5.19/scsi-queue, thanks! [1/1] scsi: lpfc: Remove unneeded variable https://git.kernel.org/mkp/scsi/c/a346f28ad231
diff --git a/drivers/scsi/lpfc/lpfc_sli.c b/drivers/scsi/lpfc/lpfc_sli.c index bda2a7ba4e77..328b8f4440ef 100644 --- a/drivers/scsi/lpfc/lpfc_sli.c +++ b/drivers/scsi/lpfc/lpfc_sli.c @@ -3717,7 +3717,6 @@ lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring, struct lpfc_iocbq *saveq) { struct lpfc_iocbq *cmdiocbp; - int rc = 1; unsigned long iflag; u32 ulp_command, ulp_status, ulp_word4, ulp_context, iotag; @@ -3857,7 +3856,7 @@ lpfc_sli_process_sol_iocb(struct lpfc_hba *phba, struct lpfc_sli_ring *pring, } } - return rc; + return 1; } /**