Commit 7615868f authored by Uwe Hermann's avatar Uwe Hermann
Browse files

Re-add code erroneously removed in r3140


Corresponding to flashrom svn r209 and coreboot v2 svn r3146.
Signed-off-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
Acked-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
parent 1f3e530b
......@@ -33,6 +33,7 @@
#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
struct flashchip {
const char *vendor;
const char *name;
/* With 32bit manufacture_id and model_id we can cover IDs up to
* (including) the 4th bank of JEDEC JEP106W Standard Manufacturer's
......
This diff is collapsed.
......@@ -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)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment