
16 Aug
2012
16 Aug
'12
8:22 p.m.
The board_postclk_init() function can be used to perform operations that requires a working timer early within the U-Boot init_sequence.
Signed-off-by: Markus Hubig mhubig@imko.de Cc: Albert ARIBAUD albert.u.boot@aribaud.net --- arch/arm/lib/board.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/arch/arm/lib/board.c b/arch/arm/lib/board.c index f1951e8..109a1ac 100644 --- a/arch/arm/lib/board.c +++ b/arch/arm/lib/board.c @@ -241,6 +241,9 @@ init_fnc_t *init_sequence[] = { fdtdec_check_fdt, #endif timer_init, /* initialize timer */ +#ifdef CONFIG_BOARD_POSTCLK_INIT + board_postclk_init, +#endif #ifdef CONFIG_FSL_ESDHC get_clocks, #endif
--
1.7.7