diff options
author | Simon Glass <sjg@chromium.org> | 2013-03-11 14:30:37 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-03-15 16:13:59 -0400 |
commit | 6f6430d72b007128dd159e5200edb9f576a10bf9 (patch) | |
tree | 3e1b333c52189c4280ccb5d169654d7d18f94a70 /arch | |
parent | 1938f4a5b62fc03c52b47697a89b2bb47b77c90c (diff) | |
download | u-boot-imx-6f6430d72b007128dd159e5200edb9f576a10bf9.zip u-boot-imx-6f6430d72b007128dd159e5200edb9f576a10bf9.tar.gz u-boot-imx-6f6430d72b007128dd159e5200edb9f576a10bf9.tar.bz2 |
Introduce generic post-relocation board_r.c
This file handles common post-relocation init for boards which use
the generic framework.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/lib/board.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/lib/board.c b/arch/powerpc/lib/board.c index acb6fdb..422b4a3 100644 --- a/arch/powerpc/lib/board.c +++ b/arch/powerpc/lib/board.c @@ -319,7 +319,8 @@ static init_fnc_t *init_sequence[] = { #ifdef CONFIG_POST post_init_f, #endif - INIT_FUNC_WATCHDOG_RESET init_func_ram, + INIT_FUNC_WATCHDOG_RESET + init_func_ram, #if defined(CONFIG_SYS_DRAM_TEST) testdram, #endif /* CONFIG_SYS_DRAM_TEST */ |