summaryrefslogtreecommitdiffstats
path: root/chipset_enable.c
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2009-06-16 23:15:10 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2009-06-16 23:15:10 +0000
commit4e587905aeaf544c94e96f508a1b2e1294b31b0d (patch)
tree38cd9478fed5aea68858223a7e964754b5c19f0e /chipset_enable.c
parent05dfbe67d661d9637a0aa9091a0cb9581b39284a (diff)
downloadast2050-flashrom-4e587905aeaf544c94e96f508a1b2e1294b31b0d.zip
ast2050-flashrom-4e587905aeaf544c94e96f508a1b2e1294b31b0d.tar.gz
List the size (in KB) and type of supported flash chips in 'flashrom -L'
Also, list how many chips/chipsets/boards we support in 'flashrom -L'. Corresponding to flashrom svn r599. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Diffstat (limited to 'chipset_enable.c')
-rw-r--r--chipset_enable.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/chipset_enable.c b/chipset_enable.c
index a9e5d14..72ac367 100644
--- a/chipset_enable.c
+++ b/chipset_enable.c
@@ -1037,11 +1037,14 @@ const struct penable chipset_enables[] = {
void print_supported_chipsets(void)
{
- int i, j;
+ int i, j, chipsetcount = 0;
const struct penable *c = chipset_enables;
- printf("\nSupported chipsets:\n\nVendor: Chipset:"
- " PCI IDs:\n\n");
+ for (i = 0; c[i].vendor_name != NULL; i++)
+ chipsetcount++;
+
+ printf("\nSupported chipsets (total: %d):\n\nVendor: "
+ "Chipset: PCI IDs:\n\n", chipsetcount);
for (i = 0; c[i].vendor_name != NULL; i++) {
printf("%s", c[i].vendor_name);
OpenPOWER on IntegriCloud