summaryrefslogtreecommitdiff
path: root/include/common.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-12-28 10:44:51 -0700
committerTom Rini <trini@konsulko.com>2020-01-17 13:26:51 -0500
commit50fbd5c8df9730ca93d83a6b2dd6bbb2584ac009 (patch)
tree7eeefb7454399a38d49600533b601725cf0f54fd /include/common.h
parentbd21f66249b3ca09a905011c52ec2fe77c109f97 (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>
Diffstat (limited to 'include/common.h')
-rw-r--r--include/common.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/common.h b/include/common.h
index 89ae1d5c1d..95db6624ac 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))
/*