From 577c6b7fb965470e1e8158145b60a21da3b8f1b7 Mon Sep 17 00:00:00 2001 From: Elyes HAOUAS Date: Tue, 21 Apr 2020 21:20:44 +0200 Subject: pcidev.c: Drop unused variable Change-Id: I6eea3e34ed6fc5d3fe65d5cf7e7bfc5e571bfa73 Signed-off-by: Elyes HAOUAS Reviewed-on: https://review.coreboot.org/c/flashrom/+/40576 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan Reviewed-by: Paul Menzel Reviewed-by: Angel Pons --- pcidev.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pcidev.c b/pcidev.c index 54c1fd34c..e13b78ce4 100644 --- a/pcidev.c +++ b/pcidev.c @@ -189,7 +189,6 @@ struct pci_dev *pcidev_init(const struct dev_entry *devs, int bar) char *msg = NULL; int found = 0; int i; - uintptr_t addr = 0; if (pci_init_common() != 0) return NULL; @@ -229,7 +228,7 @@ struct pci_dev *pcidev_init(const struct dev_entry *devs, int bar) /* FIXME: We should count all matching devices, not * just those with a valid BAR. */ - if ((addr = pcidev_readbar(dev, bar)) != 0) { + if (pcidev_readbar(dev, bar) != 0) { found_dev = dev; found++; } -- cgit v1.2.3