diff options
author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2012-04-18 11:05:20 +0900 |
---|---|---|
committer | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2012-04-18 11:16:46 +0900 |
commit | 77fe6e773af762676f4f30f646caa160e39a0bcc (patch) | |
tree | 25e24795c6b726413e8bb8c3cf670dfc5a296a90 /include | |
parent | f8abfdefcb6bb855ba118f9002c6dec17b146ca8 (diff) | |
download | u-boot-imx-77fe6e773af762676f4f30f646caa160e39a0bcc.zip u-boot-imx-77fe6e773af762676f4f30f646caa160e39a0bcc.tar.gz u-boot-imx-77fe6e773af762676f4f30f646caa160e39a0bcc.tar.bz2 |
sh: ecovec: Change macro from BOARD_LATE_INIT to CONFIG_BOARD_LATE_INIT
When calling board_late_init, we need to define CONFIG_BOARD_LATE_INIT.
The latest ecovec config defines BOARD_LATE_INIT, board_late_init is not called.
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/ecovec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/ecovec.h b/include/configs/ecovec.h index 901a0e0..4d09132 100644 --- a/include/configs/ecovec.h +++ b/include/configs/ecovec.h @@ -43,7 +43,7 @@ #define CONFIG_SH4 1 #define CONFIG_SH4A 1 #define CONFIG_CPU_SH7724 1 -#define BOARD_LATE_INIT 1 +#define CONFIG_BOARD_LATE_INIT 1 #define CONFIG_ECOVEC 1 #define CONFIG_ECOVEC_ROMIMAGE_ADDR 0xA0040000 |