diff mbox series

[next] scsi: a100u2w: remove unused variable biosaddr

Message ID 20210325170731.484651-1-colin.king@canonical.com
State New
Headers show
Series [next] scsi: a100u2w: remove unused variable biosaddr | expand

Commit Message

Colin King March 25, 2021, 5:07 p.m. UTC
From: Colin Ian King <colin.king@canonical.com>

The variable biosaddr is being assigned a value that is never read,
the variable is redundant and can be safely removed.

Addresses-Coverity: ("Unused value")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 drivers/scsi/a100u2w.c | 3 ---
 1 file changed, 3 deletions(-)

Comments

Martin K. Petersen April 2, 2021, 3:54 a.m. UTC | #1
On Thu, 25 Mar 2021 17:07:31 +0000, Colin King wrote:

> The variable biosaddr is being assigned a value that is never read,

> the variable is redundant and can be safely removed.


Applied to 5.13/scsi-queue, thanks!

[1/1] scsi: a100u2w: remove unused variable biosaddr
      https://git.kernel.org/mkp/scsi/c/92b4c52c43e1

-- 
Martin K. Petersen	Oracle Linux Engineering
diff mbox series

Patch

diff --git a/drivers/scsi/a100u2w.c b/drivers/scsi/a100u2w.c
index c9ed210d77b3..028af6b1057c 100644
--- a/drivers/scsi/a100u2w.c
+++ b/drivers/scsi/a100u2w.c
@@ -1088,7 +1088,6 @@  static int inia100_probe_one(struct pci_dev *pdev,
 	unsigned long port, bios;
 	int error = -ENODEV;
 	u32 sz;
-	unsigned long biosaddr;
 
 	if (pci_enable_device(pdev))
 		goto out;
@@ -1138,8 +1137,6 @@  static int inia100_probe_one(struct pci_dev *pdev,
 		goto out_free_scb_array;
 	}
 
-	biosaddr = host->BIOScfg;
-	biosaddr = (biosaddr << 4);
 	if (init_orchid(host)) {	/* Initialize orchid chip */
 		printk("inia100: initial orchid fail!!\n");
 		goto out_free_escb_array;