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