summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-12-28 10:44:50 -0700
committerJagan Teki <jagan@amarulasolutions.com>2020-01-24 23:06:48 +0530
commitef20e5359bde42ad7e1aae8f0bf893dbca2ef2d0 (patch)
tree783a130b1eaf4050422f52f1f99ed855d3e46627 /include
parentad8a812f40acb86609206dd8343db16493eb60a9 (diff)
common: Drop CONFIG_POST_STD/ALT_LIST
These CONFIG options are not used anymore. CONFIG_POST_ALT_LIST just causes CONFIG_POST_STD_LIST to be set and it causes tests.c to be compiled. So just make compiling tests.c unconditional. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r--include/common.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/common.h b/include/common.h
index 38736d3b22..89ae1d5c1d 100644
--- a/include/common.h
+++ b/include/common.h
@@ -124,9 +124,6 @@ int get_serial_clock(void);
#ifdef CONFIG_POST
#define CONFIG_HAS_POST
-#ifndef CONFIG_POST_ALT_LIST
-#define CONFIG_POST_STD_LIST
-#endif
#endif
#define ROUND(a,b) (((a) + (b) - 1) & ~((b) - 1))