diff options
Diffstat (limited to 'common')
| -rw-r--r-- | common/board_f.c | 9 | 
1 files changed, 3 insertions, 6 deletions
| diff --git a/common/board_f.c b/common/board_f.c index 81edbdf8e..9fa7363af 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -851,12 +851,6 @@ static init_fnc_t init_sequence_f[] = {  #ifdef CONFIG_ARM  	timer_init,		/* initialize timer */  #endif -#ifdef CONFIG_BOARD_POSTCLK_INIT -	board_postclk_init, -#endif -#ifdef CONFIG_FSL_ESDHC -	get_clocks, -#endif  #ifdef CONFIG_SYS_ALLOC_DPRAM  #if !defined(CONFIG_CPM2)  	dpram_init, @@ -865,6 +859,9 @@ static init_fnc_t init_sequence_f[] = {  #if defined(CONFIG_BOARD_POSTCLK_INIT)  	board_postclk_init,  #endif +#ifdef CONFIG_FSL_ESDHC +	get_clocks, +#endif  	env_init,		/* initialize environment */  #if defined(CONFIG_8xx_CPUCLK_DEFAULT)  	/* get CPU and bus clocks according to the environment variable */ |