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

Verbose probe output is split across multiple lines for some probe functions

This makes visual inspection and grepping a lot harder than necessary.
Remove line breaks where appropriate. Some error messages should end up
on stderr instead of just being displayed in verbose mode.

Thanks to Maciej Pijanka for testing.

Corresponding to flashrom svn r660.

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
This commit is contained in:
Carl-Daniel Hailfinger
2009-07-23 01:33:43 +00:00
parent a80cfbc3d7
commit 414bd320ac
3 changed files with 37 additions and 30 deletions

View File

@ -28,11 +28,10 @@ int probe_w29ee011(struct flashchip *flash)
extern char *chip_to_probe;
if (!chip_to_probe || strcmp(chip_to_probe, "W29EE011")) {
printf_debug("\n===\n");
printf_debug(" Probing disabled for Winbond W29EE011 because the probing sequence puts the\n");
printf_debug(" AMIC A49LF040A in a funky state.\n");
printf_debug(" Use 'flashrom -c W29EE011' if you have a board with this chip.");
printf_debug("\n===\n");
printf_debug("Probing disabled for Winbond W29EE011 because "
"the probing sequence puts the AMIC A49LF040A in "
"a funky state. Use 'flashrom -c W29EE011' if you "
"have a board with this chip.\n");
return 0;
}