Commit 729c287e authored by Colin Ian King's avatar Colin Ian King Committed by Martin K. Petersen

scsi: lpfc: Remove redundant pointer 'lp'

Pointer lp is being initialized and incremented but the result is never
read. The pointer is redundant and can be removed.

Once lp is removed, pcmd is not longer used. So remove pcmd as well
Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Signed-off-by: default avatarJames Smart <jsmart2021@gmail.com>
Link: https://lore.kernel.org/r/20221108183620.93978-1-jsmart2021@gmail.comSigned-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent e56ca6bc
...@@ -9172,15 +9172,10 @@ static int ...@@ -9172,15 +9172,10 @@ static int
lpfc_els_rcv_farpr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb, lpfc_els_rcv_farpr(struct lpfc_vport *vport, struct lpfc_iocbq *cmdiocb,
struct lpfc_nodelist *ndlp) struct lpfc_nodelist *ndlp)
{ {
struct lpfc_dmabuf *pcmd;
uint32_t *lp;
uint32_t did; uint32_t did;
did = get_job_els_rsp64_did(vport->phba, cmdiocb); did = get_job_els_rsp64_did(vport->phba, cmdiocb);
pcmd = cmdiocb->cmd_dmabuf;
lp = (uint32_t *)pcmd->virt;
lp++;
/* FARP-RSP received from DID <did> */ /* FARP-RSP received from DID <did> */
lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS, lpfc_printf_vlog(vport, KERN_INFO, LOG_ELS,
"0600 FARP-RSP received from DID x%x\n", did); "0600 FARP-RSP received from DID x%x\n", did);
......
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