commit | a84e3d99a1909a3eb84716011dff62b2a2213998 | [log] [tgz] |
---|---|---|
author | Ilya Yanok <ilya.yanok@cogentembedded.com> | Mon Sep 17 10:26:26 2012 +0000 |
committer | Tom Rini <trini@ti.com> | Mon Oct 01 10:02:14 2012 -0700 |
tree | f1ba91d1f53dbf29b098188041f401639dbeb39b | |
parent | 3087658832bbe36162c09a74270156cdaaec1083 [diff] |
OMAP: spl: call timer_init() from SPL We need to initialize timer properly, otherwise all delays inside SPL will be wrong. Signed-off-by: Ilya Yanok <ilya.yanok@cogentembedded.com>
diff --git a/common/spl/spl.c b/common/spl/spl.c index c640f87..29cbb93 100644 --- a/common/spl/spl.c +++ b/common/spl/spl.c
@@ -155,6 +155,8 @@ CONFIG_SYS_SPL_MALLOC_SIZE); #endif + timer_init(); + #ifdef CONFIG_SPL_BOARD_INIT spl_board_init(); #endif