From 1432a60c85ca4ccaeaf56cfa779fa71059c41483 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sun, 28 Jun 2009 23:26:37 +0000 Subject: Random minor flashrom fixes - Properly escape '-' chars in manpage. - Fix typo in chipset_enable.c. - Drop useless 'return' in chip_readn(). - Random other whitespace or cosmetic fixes. Corresponding to flashrom svn r636. Signed-off-by: Uwe Hermann Acked-by: Uwe Hermann --- print.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'print.c') diff --git a/print.c b/print.c index 2bd53e46..2834bc8c 100644 --- a/print.c +++ b/print.c @@ -289,7 +289,7 @@ In general, flashing laptops is more difficult because laptops\n\n\ * often have special protection stuff which has to be handled by flashrom,\n\ * often use flash translation circuits which need drivers in flashrom.\n\n\
\n\ +background-color:#ff6666; align:right; border:1px solid #000000;\">\n\ '''IMPORTANT:''' At this point we recommend to '''not''' use flashrom on \ untested laptops unless you have a means to recover from a flashing that goes \ wrong (a working backup flash chip and/or good soldering skills).\n
\n"; @@ -649,6 +649,7 @@ void print_supported_chips_wiki(void) "| valign=\"top\"|\n\n%s", chipcount, chip_th); for (f = flashchips; f->name != NULL; f++, i++) { + /* Don't print "unknown XXXX SPI chip" entries. */ if (!strncmp(f->name, "unknown", 7)) continue; -- cgit v1.2.3