Commit 4adf8a65 authored by Peter Lemenkov's avatar Peter Lemenkov Committed by Uwe Hermann
Browse files

Merge print.c and print_wiki.c board/URL tables


Also, merge the tables in the output, i.e. there's only one table which
contains both known-good and known-bad/untested boards.

Corresponding to flashrom svn r1024.
Signed-off-by: default avatarPeter Lemenkov <lemenkov@gmail.com>
Acked-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
parent 71127727
......@@ -305,12 +305,22 @@ extern struct board_pciid_enable board_pciid_enables[];
struct board_info {
const char *vendor;
const char *name;
const int working;
#ifdef CONFIG_PRINT_WIKI
const char *url;
const char *note;
#endif
};
extern const struct board_info boards_ok[];
extern const struct board_info boards_bad[];
extern const struct board_info laptops_ok[];
extern const struct board_info laptops_bad[];
#ifdef CONFIG_PRINT_WIKI
#define B(vendor, name, status, url, note) { vendor, name, status, url, note }
#else
#define B(vendor, name, status, url, note) { vendor, name, status }
#endif
extern const struct board_info boards_known[];
extern const struct board_info laptops_known[];
#endif
/* udelay.c */
......
This diff is collapsed.
This diff is collapsed.
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