mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-29 07:53:44 +02:00
pcidev.c: Drop unused variable
Change-Id: I6eea3e34ed6fc5d3fe65d5cf7e7bfc5e571bfa73 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/flashrom/+/40576 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
a3519561bd
commit
577c6b7fb9
3
pcidev.c
3
pcidev.c
@ -189,7 +189,6 @@ struct pci_dev *pcidev_init(const struct dev_entry *devs, int bar)
|
|||||||
char *msg = NULL;
|
char *msg = NULL;
|
||||||
int found = 0;
|
int found = 0;
|
||||||
int i;
|
int i;
|
||||||
uintptr_t addr = 0;
|
|
||||||
|
|
||||||
if (pci_init_common() != 0)
|
if (pci_init_common() != 0)
|
||||||
return NULL;
|
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
|
/* FIXME: We should count all matching devices, not
|
||||||
* just those with a valid BAR.
|
* just those with a valid BAR.
|
||||||
*/
|
*/
|
||||||
if ((addr = pcidev_readbar(dev, bar)) != 0) {
|
if (pcidev_readbar(dev, bar) != 0) {
|
||||||
found_dev = dev;
|
found_dev = dev;
|
||||||
found++;
|
found++;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user