diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-01-14 22:38:55 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-02-07 00:39:47 +0100 |
commit | cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974 (patch) | |
tree | fb3c93025e8bb6925ce3ae835b24d7d7c0b5ee44 | |
parent | 8dafa87476b0d7170e219c2f5e3842c833a91807 (diff) | |
download | u-boot-imx-cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974.zip u-boot-imx-cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974.tar.gz u-boot-imx-cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974.tar.bz2 |
xsengine: rename board_post_init to board_late_init
missing migration from "Cleanup of some init functions"
in c837dcb1a316745092567bfe4fb266d0941884ff
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-rw-r--r-- | board/xsengine/xsengine.c | 2 | ||||
-rw-r--r-- | include/configs/xsengine.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/xsengine/xsengine.c b/board/xsengine/xsengine.c index 23d56c4..65923e9 100644 --- a/board/xsengine/xsengine.c +++ b/board/xsengine/xsengine.c @@ -47,7 +47,7 @@ int board_init (void) return 0; } -int board_post_init (void) +int board_late_init (void) { setenv ("stdout", "serial"); setenv ("stderr", "serial"); diff --git a/include/configs/xsengine.h b/include/configs/xsengine.h index 766617e..d167e01 100644 --- a/include/configs/xsengine.h +++ b/include/configs/xsengine.h @@ -33,7 +33,7 @@ #define CONFIG_XSENGINE 1 #define CONFIG_MMC 1 #define CONFIG_DOS_PARTITION 1 -#define BOARD_POST_INIT 1 +#define OARD_LATE_INIT 1 #undef CONFIG_USE_IRQ /* we don't need IRQ/FIQ stuff */ #define CFG_HZ 3686400 /* incrementer freq: 3.6864 MHz */ |