diff options
author | Prafulla Wadaskar <prafulla@marvell.com> | 2010-10-20 20:12:27 +0530 |
---|---|---|
committer | Prafulla Wadaskar <prafulla@marvell.com> | 2010-10-20 23:23:01 +0530 |
commit | 754ae3fbb76dc429ef932bbd04b432196efe45ff (patch) | |
tree | c02c97f0c3fb49bde712977eb3c315f734b7b867 /board/Marvell/rd6281a | |
parent | 6b0ccc3b456bcec534620aac93427e4a2207a66a (diff) | |
download | u-boot-imx-754ae3fbb76dc429ef932bbd04b432196efe45ff.zip u-boot-imx-754ae3fbb76dc429ef932bbd04b432196efe45ff.tar.gz u-boot-imx-754ae3fbb76dc429ef932bbd04b432196efe45ff.tar.bz2 |
Kirkwood: bugfix: broken early console messages
It has been observed that, the complete u-boot banner
does not appear on the console when the system is booted
from NAND/NOR/SPI flash.
This patch fixes this issue on all Marvell boards by adding
board_early_init_f() support
Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
Diffstat (limited to 'board/Marvell/rd6281a')
-rw-r--r-- | board/Marvell/rd6281a/rd6281a.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/board/Marvell/rd6281a/rd6281a.c b/board/Marvell/rd6281a/rd6281a.c index 0d76146..e69e035 100644 --- a/board/Marvell/rd6281a/rd6281a.c +++ b/board/Marvell/rd6281a/rd6281a.c @@ -31,7 +31,7 @@ DECLARE_GLOBAL_DATA_PTR; -int board_init(void) +int board_early_init_f(void) { /* * default gpio configuration @@ -97,7 +97,11 @@ int board_init(void) 0 }; kirkwood_mpp_conf(kwmpp_config); + return 0; +} +int board_init(void) +{ /* * arch number of board */ |