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
This commit is contained in:
Uwe Hermann
2008-03-13 18:52:51 +00:00
parent ee2bb3a21e
commit 912ee57a59
4 changed files with 151 additions and 244 deletions

View File

@ -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)