2017-06-15 20:18:24

by Gustavo A. R. Silva

[permalink] [raw]
Subject: [PATCH] atm: solos-pci: remove useless variable assignments

Value assigned to variable _data32_ at lines 1254 and 1257 is
overwritten at line 1260 before it can be used. This makes
such variable assignments useless.

Addresses-Coverity-ID: 1227049
Signed-off-by: Gustavo A. R. Silva <[email protected]>
---
drivers/atm/solos-pci.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/atm/solos-pci.c b/drivers/atm/solos-pci.c
index 5ad037c..9115b29 100644
--- a/drivers/atm/solos-pci.c
+++ b/drivers/atm/solos-pci.c
@@ -1251,10 +1251,10 @@ static int fpga_probe(struct pci_dev *dev, const struct pci_device_id *id)

if (reset) {
iowrite32(1, card->config_regs + FPGA_MODE);
- data32 = ioread32(card->config_regs + FPGA_MODE);
+ ioread32(card->config_regs + FPGA_MODE);

iowrite32(0, card->config_regs + FPGA_MODE);
- data32 = ioread32(card->config_regs + FPGA_MODE);
+ ioread32(card->config_regs + FPGA_MODE);
}

data32 = ioread32(card->config_regs + FPGA_VER);
--
2.5.0


2017-06-15 21:33:36

by David Miller

[permalink] [raw]
Subject: Re: [PATCH] atm: solos-pci: remove useless variable assignments

From: "Gustavo A. R. Silva" <[email protected]>
Date: Thu, 15 Jun 2017 14:56:21 -0500

> Value assigned to variable _data32_ at lines 1254 and 1257 is
> overwritten at line 1260 before it can be used. This makes
> such variable assignments useless.
>
> Addresses-Coverity-ID: 1227049
> Signed-off-by: Gustavo A. R. Silva <[email protected]>

Applied, thanks.

2017-06-15 21:44:19

by Gustavo A. R. Silva

[permalink] [raw]
Subject: Re: [PATCH] atm: solos-pci: remove useless variable assignments

Hi David,

Quoting David Miller <[email protected]>:

> From: "Gustavo A. R. Silva" <[email protected]>
> Date: Thu, 15 Jun 2017 14:56:21 -0500
>
>> Value assigned to variable _data32_ at lines 1254 and 1257 is
>> overwritten at line 1260 before it can be used. This makes
>> such variable assignments useless.
>>
>> Addresses-Coverity-ID: 1227049
>> Signed-off-by: Gustavo A. R. Silva <[email protected]>
>
> Applied, thanks.

Absolutely, glad to help.

Regards
--
Gustavo A. R. Silva