diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2022-05-25 00:42:27 +0300 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2022-05-25 00:42:27 +0300 |
commit | efa315818337ce00d7452546e4966e2692acd9d9 (patch) | |
tree | e4362e5e30661d16dd011e421873b4a744f391ab /drivers/pci | |
parent | 647b52ecabb47ad72741861b604a18e38f156d0a (diff) | |
parent | 6086987bdeb5910778e6488b1cd6801701b4ef91 (diff) | |
download | linux-efa315818337ce00d7452546e4966e2692acd9d9.tar.xz |
Merge branch 'remotes/lorenzo/pci/versatile'
- Drop unnecessary "retval" variable, since it's never read (Colin Ian
King)
* remotes/lorenzo/pci/versatile:
PCI: versatile: Remove redundant variable retval
Diffstat (limited to 'drivers/pci')
-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 |