diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2008-03-13 18:52:51 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2008-03-13 18:52:51 +0000 |
commit | eac10164378a08666ae4a8ce7279a1afc9962026 (patch) | |
tree | a2b50b921454bec7aeee031051e2b2ad347af715 /flashrom.c | |
parent | 23c3d951b71ecd56c500b3f042f0da35c07737fc (diff) | |
download | flashrom-eac10164378a08666ae4a8ce7279a1afc9962026.tar.gz flashrom-eac10164378a08666ae4a8ce7279a1afc9962026.tar.bz2 flashrom-eac10164378a08666ae4a8ce7279a1afc9962026.zip |
Also print the chip vendor name in --list-supported output
Cosmetic changes in some files, partly bending the 80-characters-per-line
rule in this special case, as the 80-character-limited version looks
equally crappy even in an 80x25 console/xterm, so let's make it at least
look good in a high-resolution xterm.
Corresponding to flashrom svn r203 and coreboot v2 svn r3139.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
Diffstat (limited to 'flashrom.c')
-rw-r--r-- | flashrom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flashrom.c b/flashrom.c index a176319da..a8ea4a3ce 100644 --- a/flashrom.c +++ b/flashrom.c @@ -200,7 +200,7 @@ void print_supported_chips(void) printf("Supported ROM chips:\n\n"); for (i = 0; flashchips[i].name != NULL; i++) - printf("%s\n", flashchips[i].name); + printf("%s %s\n", flashchips[i].vendor, flashchips[i].name); } void usage(const char *name) |