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>
diff --git a/flashrom.c b/flashrom.c
index a176319..a8ea4a3 100644
--- a/flashrom.c
+++ b/flashrom.c
@@ -200,7 +200,7 @@
 	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)