flashrom: gcc thinks base could be used uninitialized, so shut it up.
Bug from r3791. Signed-off-by: Peter Stuge <peter@stuge.se> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3792 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
9602d1e828
commit
fd5a2df876
|
@ -105,7 +105,7 @@ struct flashchip *probe_flash(struct flashchip *first_flash, int force)
|
||||||
{
|
{
|
||||||
volatile uint8_t *bios;
|
volatile uint8_t *bios;
|
||||||
struct flashchip *flash;
|
struct flashchip *flash;
|
||||||
unsigned long base, size;
|
unsigned long base = 0, size;
|
||||||
|
|
||||||
for (flash = first_flash; flash && flash->name; flash++) {
|
for (flash = first_flash; flash && flash->name; flash++) {
|
||||||
if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0)
|
if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0)
|
||||||
|
|
Loading…
Reference in New Issue