mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
board_f: skip timer_init() on Coldfire archs
Coldfire arch is not happy with timer_init since interrupt handlers are still not set at that stage, and the boot hangs silently. Signed-off-by: Angelo Dureghello <angelo@sysam.it>
This commit is contained in:
parent
bcc1726a7b
commit
0ce452872f
1 changed files with 2 additions and 0 deletions
|
@ -740,7 +740,9 @@ static const init_fnc_t init_sequence_f[] = {
|
|||
/* get CPU and bus clocks according to the environment variable */
|
||||
get_clocks, /* get CPU and bus clocks (etc.) */
|
||||
#endif
|
||||
#if !defined(CONFIG_M68K)
|
||||
timer_init, /* initialize timer */
|
||||
#endif
|
||||
#if defined(CONFIG_BOARD_POSTCLK_INIT)
|
||||
board_postclk_init,
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue