diff options
| author | Colin Ian King <[email protected]> | 2022-04-18 14:44:16 +0000 |
|---|---|---|
| committer | Lorenzo Pieralisi <[email protected]> | 2022-04-28 09:46:37 +0000 |
| commit | 6086987bdeb5910778e6488b1cd6801701b4ef91 (patch) | |
| tree | ea17e9cd280c6d0cf1fe8542bc3069429e28b659 /drivers/pci/controller/pci-versatile.c | |
| parent | Linux 5.18-rc1 (diff) | |
| download | kernel-6086987bdeb5910778e6488b1cd6801701b4ef91.tar.gz kernel-6086987bdeb5910778e6488b1cd6801701b4ef91.zip | |
PCI: versatile: Remove redundant variable retval
Variable retval is being assigned a value that is never read, the
variable is redundant and can be removed.
Cleans up clang scan build warning:
drivers/pci/controller/pci-versatile.c:37:10: warning: Although the value
stored to 'retval' is used in the enclosing expression, the value is never
actually read from 'retval' [deadcode.DeadStores]
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Colin Ian King <[email protected]>
Signed-off-by: Lorenzo Pieralisi <[email protected]>
Diffstat (limited to 'drivers/pci/controller/pci-versatile.c')
| -rw-r--r-- | drivers/pci/controller/pci-versatile.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/pci/controller/pci-versatile.c b/drivers/pci/controller/pci-versatile.c index 653d5d0ecf81..7991d334e0f1 100644 --- a/drivers/pci/controller/pci-versatile.c +++ b/drivers/pci/controller/pci-versatile.c @@ -31,10 +31,9 @@ static u32 pci_slot_ignore; static int __init versatile_pci_slot_ignore(char *str) { - int retval; int slot; - while ((retval = get_option(&str, &slot))) { + while (get_option(&str, &slot)) { if ((slot < 0) || (slot > 31)) pr_err("Illegal slot value: %d\n", slot); else |
