aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass2019-12-28 10:44:51 -0700
committerJagan Teki2020-01-24 23:06:48 +0530
commit63b05da74d7a51735ea5e3e680074629dbcc295e (patch)
treee69b802d63be5505ddb1e0788bd94105093b4871
parentef20e5359bde42ad7e1aae8f0bf893dbca2ef2d0 (diff)
common: Drop CONFIG_HAS_POST
This only exists to control whether the post/ directory is build. It is just as easy to check this in the Makefile. Remove CONFIG_HAS_POST and use an ifdef in the Makefile instead. Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r--Makefile4
-rw-r--r--include/common.h4
2 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 3f332e68856..9d7d8c269c8 100644
--- a/Makefile
+++ b/Makefile
@@ -763,7 +763,9 @@ libs-y += cmd/
libs-y += common/
libs-y += env/
libs-$(CONFIG_API) += api/
-libs-$(CONFIG_HAS_POST) += post/
+ifdef CONFIG_POST
+libs-y += post/
+endif
libs-$(CONFIG_UNIT_TEST) += test/ test/dm/
libs-$(CONFIG_UT_ENV) += test/env/
libs-$(CONFIG_UT_OPTEE) += test/optee/
diff --git a/include/common.h b/include/common.h
index 89ae1d5c1d3..95db6624acb 100644
--- a/include/common.h
+++ b/include/common.h
@@ -122,10 +122,6 @@ int get_serial_clock(void);
/* Put only stuff here that the assembler can digest */
-#ifdef CONFIG_POST
-#define CONFIG_HAS_POST
-#endif
-
#define ROUND(a,b) (((a) + (b) - 1) & ~((b) - 1))
/*