summaryrefslogtreecommitdiff
path: root/w29ee011.c
diff options
context:
space:
mode:
authorhailfinger <hailfinger@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2009-07-23 01:33:43 +0000
committerhailfinger <hailfinger@2b7e53f0-3cfb-0310-b3e9-8179ed1497e1>2009-07-23 01:33:43 +0000
commit54ca2749fac1e43bd81bcd139e640efbd909b576 (patch)
tree1029c94038ad13ad5ac0b7e292c28b3135932662 /w29ee011.c
parent4c25b4d3a72fadbcdae6dfe96fdb895efaf6c6fb (diff)
downloadflashrom-54ca2749fac1e43bd81bcd139e640efbd909b576.tar.gz
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. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@660 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'w29ee011.c')
-rw-r--r--w29ee011.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/w29ee011.c b/w29ee011.c
index 77724be..a26cd80 100644
--- a/w29ee011.c
+++ b/w29ee011.c
@@ -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;
}