summaryrefslogtreecommitdiff
path: root/util/flashrom/flashrom.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2008-03-13 18:52:51 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2008-03-13 18:52:51 +0000
commit912ee57a5968cde002c1fadffed33291a1a35b3c (patch)
tree2576588cedfc74b56c632dbfca12a6e6dec7fb83 /util/flashrom/flashrom.c
parentee2bb3a21e6f19af62c500c109f658197d074c8f (diff)
downloadcoreboot-912ee57a5968cde002c1fadffed33291a1a35b3c.tar.xz
Also print the chip vendor name in --list-supported output (trivial).
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. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3139 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flashrom/flashrom.c')
-rw-r--r--util/flashrom/flashrom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/flashrom/flashrom.c b/util/flashrom/flashrom.c
index a176319da8..a8ea4a3cea 100644
--- a/util/flashrom/flashrom.c
+++ b/util/flashrom/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)