1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-02 22:43:17 +02:00

Some cosmetic cleanups in the flashrom code and output

Corresponding to flashrom svn r151 and coreboot v2 svn r2873.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
This commit is contained in:
Uwe Hermann
2007-10-17 23:55:15 +00:00
parent dca0ab1884
commit a502dcea3d
20 changed files with 48 additions and 49 deletions

View File

@ -499,12 +499,12 @@ int chipset_flash_enable(void)
}
if (dev) {
printf("Found chipset \"%s\": Enabling flash write... ",
printf("Found chipset \"%s\", enabling flash write... ",
enables[i].name);
ret = enables[i].doit(dev, enables[i].name);
if (ret)
printf("Failed!\n");
printf("FAILED!\n");
else
printf("OK.\n");
}