[U-Boot] [PATCH v2 5/7] board_f: call timer_init on MIPS
Paul Burton
paul.burton at imgtec.com
Mon Apr 7 11:11:21 CEST 2014
MIPS needs a call to timer_init to preserve its current behaviour
ensuring that the cop0 compare register is initialised appropriately.
Reported-by: Daniel Schwierzeck <daniel.schwierzeck at gmail.com>
Signed-off-by: Paul Burton <paul.burton at imgtec.com>
---
Changes since v1:
- New patch
---
common/board_f.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/board_f.c b/common/board_f.c
index 2ece9e2..cbdf06f 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -819,7 +819,7 @@ static init_fnc_t init_sequence_f[] = {
/* TODO: can we rename this to timer_init()? */
init_timebase,
#endif
-#ifdef CONFIG_ARM
+#if defined(CONFIG_ARM) || defined(CONFIG_MIPS)
timer_init, /* initialize timer */
#endif
#ifdef CONFIG_SYS_ALLOC_DPRAM
--
1.8.5.3
More information about the U-Boot
mailing list