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 <s...@chromium.org> --- Changes in v2: None include/common.h | 3 --- post/Makefile | 2 +- scripts/config_whitelist.txt | 2 -- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/include/common.h b/include/common.h index 454e88323c..1fba17b0f7 100644 --- a/include/common.h +++ b/include/common.h @@ -125,9 +125,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)) diff --git a/post/Makefile b/post/Makefile index 5f72708214..afd49403c2 100644 --- a/post/Makefile +++ b/post/Makefile @@ -4,7 +4,7 @@ # Wolfgang Denk, DENX Software Engineering, w...@denx.de. obj-y += post.o -obj-$(CONFIG_POST_STD_LIST) += tests.o +obj-y += tests.o obj-y += drivers/ obj-$(CONFIG_PPC) += lib_powerpc/ diff --git a/scripts/config_whitelist.txt b/scripts/config_whitelist.txt index 6b6862fe5e..c320e240dd 100644 --- a/scripts/config_whitelist.txt +++ b/scripts/config_whitelist.txt @@ -1352,7 +1352,6 @@ CONFIG_PMW_BASE CONFIG_PM_SLEEP CONFIG_POST CONFIG_POSTBOOTMENU -CONFIG_POST_ALT_LIST CONFIG_POST_BSPEC1 CONFIG_POST_BSPEC2 CONFIG_POST_BSPEC3 @@ -1360,7 +1359,6 @@ CONFIG_POST_BSPEC4 CONFIG_POST_BSPEC5 CONFIG_POST_EXTERNAL_WORD_FUNCS CONFIG_POST_SKIP_ENV_FLAGS -CONFIG_POST_STD_LIST CONFIG_POST_UART CONFIG_POST_WATCHDOG CONFIG_POWER -- 2.24.1.735.g03f4e72817-goog