mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-20 22:21:41 +00:00
OMAP SPL: Fix missing timer_init() call in OMAP4 s_init()
In 8775471bb
, the call to timer_init() was removed from common code
and put in OMAP3 s_init() function. As a result the boot was broken
on OMAP4. This patch adds timer_init() in OMAP4 s_init(), that fix
boot on all OMAP4 boards.
Signed-off-by: Nicolas Dechesne <n-dechesne@ti.com>
Tested-by: Robert P. J. Day <rpjday@crashcourse.ca>
Cc: Sandeep Paulraj <s-paulraj@ti.com>
Cc: Tom Rini <trini@ti.com>
This commit is contained in:
parent
8167af14d5
commit
f59021791b
1 changed files with 2 additions and 0 deletions
|
@ -120,6 +120,8 @@ void s_init(void)
|
||||||
#endif
|
#endif
|
||||||
prcm_init();
|
prcm_init();
|
||||||
#ifdef CONFIG_SPL_BUILD
|
#ifdef CONFIG_SPL_BUILD
|
||||||
|
timer_init();
|
||||||
|
|
||||||
/* For regular u-boot sdram_init() is called from dram_init() */
|
/* For regular u-boot sdram_init() is called from dram_init() */
|
||||||
sdram_init();
|
sdram_init();
|
||||||
init_boot_params();
|
init_boot_params();
|
||||||
|
|
Loading…
Add table
Reference in a new issue