diff options
author | Masahiro Yamada | 2013-09-01 15:04:27 +0900 |
---|---|---|
committer | Tom Rini | 2013-09-06 13:09:08 -0400 |
commit | 1affd4d4a3fe512050e1ad1636d9360c670da531 (patch) | |
tree | 2b0444a316b7616b021de1c7ef16ae18cfb41313 /config.mk | |
parent | cb4ef5ba3653a60a4b7fcd59bab4c032cd5cc82a (diff) |
cam_enc_4xx: Move CONFIG_SPL_PAD_TO to a config header
For most boards which define CONFIG_SPL_PAD_TO,
it is defined in config header files.
Currently, there exists only one exception, cam_enc_4xx board.
This patch moves CONFIG_SPL_PAD_TO definition
from board/ait/cam_enc_4xx/config.mk
to include/configs/cam_enc_4xx.h.
With this modification, we can delete a glue code
in the top level config.mk:
ifneq ($(CONFIG_SPL_PAD_TO),)
CPPFLAGS += -DCONFIG_SPL_PAD_TO=$(CONFIG_SPL_PAD_TO)
endif
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/config.mk b/config.mk index 5dfbad7d4b9..b55ed563a5e 100644 --- a/config.mk +++ b/config.mk @@ -232,10 +232,6 @@ ifneq ($(CONFIG_SYS_TEXT_BASE),) CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE) endif -ifneq ($(CONFIG_SPL_PAD_TO),) -CPPFLAGS += -DCONFIG_SPL_PAD_TO=$(CONFIG_SPL_PAD_TO) -endif - ifeq ($(CONFIG_SPL_BUILD),y) CPPFLAGS += -DCONFIG_SPL_BUILD ifeq ($(CONFIG_TPL_BUILD),y) |