summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2021-09-25 19:43:26 -0600
committerTom Rini <trini@konsulko.com>2021-10-08 15:53:26 -0400
commit30ba2828652915d29892146022ed92b2bd524ad6 (patch)
tree7bff4c316feb0ec84c138635ff98aa1e2f4a4c0d /include
parent806d1ff37b0afe8cbf5658dc01876f6321aed235 (diff)
image: Drop IMAGE_OF_BOARD_SETUP
This is not needed with Kconfig, since we can use IS_ENABLED() easily enough. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/image.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/include/image.h b/include/image.h
index 00a8099958..e1e4148e4c 100644
--- a/include/image.h
+++ b/include/image.h
@@ -49,12 +49,6 @@ struct fdt_region;
#include <fdt_support.h>
#endif /* FIT */
-#ifdef CONFIG_OF_BOARD_SETUP
-# define IMAGE_OF_BOARD_SETUP 1
-#else
-# define IMAGE_OF_BOARD_SETUP 0
-#endif
-
#ifdef CONFIG_OF_SYSTEM_SETUP
# define IMAGE_OF_SYSTEM_SETUP 1
#else