[PATCH] scsi: 53c700: remove redundant assignment to pointer SCp

From: Colin Ian King
Date: Sun Jan 23 2022 - 12:55:35 EST


Pointer SCp is being re-assigned the same value that it was initialized
to a few lines earlier, the assignment is redundant and can be removed.

Signed-off-by: Colin Ian King <colin.i.king@xxxxxxxxx>
---
drivers/scsi/53c700.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/drivers/scsi/53c700.c b/drivers/scsi/53c700.c
index 3ad3ebaca8e9..ad4972c0fc53 100644
--- a/drivers/scsi/53c700.c
+++ b/drivers/scsi/53c700.c
@@ -1507,7 +1507,6 @@ NCR_700_intr(int irq, void *dev_id)
struct scsi_cmnd *SCp = hostdata->cmd;

handled = 1;
- SCp = hostdata->cmd;

if(istat & SCSI_INT_PENDING) {
udelay(10);
--
2.33.1