From 97d5b126c635ec6ad2fd3ef44deec245669ad942 Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Wed, 31 Aug 2011 16:19:50 +0000 Subject: Shorten some board enable related function names Corresponding to flashrom svn r1424. Signed-off-by: Carl-Daniel Hailfinger Acked-by: Stefan Tauner --- print.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'print.c') diff --git a/print.c b/print.c index f0bd477d4..5bd75ec67 100644 --- a/print.c +++ b/print.c @@ -203,7 +203,7 @@ static void print_supported_boards_helper(const struct board_info *boards, const char *devicetype) { int i, boardcount_good = 0, boardcount_bad = 0; - const struct board_pciid_enable *e = board_pciid_enables; + const struct board_match *e = board_matches; const struct board_info *b = boards; int maxvendorlen = strlen("Vendor") + 1; int maxboardlen = strlen("Board") + 1; @@ -241,7 +241,7 @@ static void print_supported_boards_helper(const struct board_info *boards, msg_ginfo(" "); msg_ginfo((b->working) ? "OK " : "BAD "); - for (e = board_pciid_enables; e->vendor_name != NULL; e++) { + for (e = board_matches; e->vendor_name != NULL; e++) { if (strcmp(e->vendor_name, b->vendor) || strcmp(e->board_name, b->name)) continue; -- cgit v1.2.3