From 2c20b28f0e057c231c03b839b3c78f21cc6b0315 Mon Sep 17 00:00:00 2001 From: Stefan Tauner Date: Sat, 28 Jul 2012 19:35:26 +0000 Subject: Introduce enum test_state Previously boards in the wiki were tagged either as working or as known bad. But we added support to various boards via board enables that were then never tested because the owners have not reported back. This can now be tagged with NT and is shown appropriately. Also, the underlying data structure indicating state was converted from macros to an enum while preserving original integer values and is used for programmers and chipsets too. Corresponding to flashrom svn r1555. Signed-off-by: Stefan Tauner Acked-by: Stefan Tauner --- flash.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'flash.h') diff --git a/flash.h b/flash.h index d669512..b41c281 100644 --- a/flash.h +++ b/flash.h @@ -253,8 +253,11 @@ int doit(struct flashctx *flash, int force, const char *filename, int read_it, i int read_buf_from_file(unsigned char *buf, unsigned long size, const char *filename); int write_buf_to_file(unsigned char *buf, unsigned long size, const char *filename); -#define OK 0 -#define NT 1 /* Not tested */ +enum test_state { + OK = 0, + NT = 1, /* Not tested */ + BAD +}; /* Something happened that shouldn't happen, but we can go on. */ #define ERROR_NONFATAL 0x100 -- cgit v1.1