mirror of
https://review.coreboot.org/flashrom.git
synced 2025-06-30 21:52:36 +02:00
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 <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
3
print.c
3
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\
|
||||
<div style=\"margin-top:0.5em; padding:0.5em 0.5em 0.5em 0.5em; \
|
||||
background-color:#ff9f9f; align:right; border:1px solid #aabbcc;\">\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</div>\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;
|
||||
|
||||
|
Reference in New Issue
Block a user