summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorAnatolij Gustschin <agust@denx.de>2017-08-28 15:46:33 (GMT)
committerStefano Babic <sbabic@denx.de>2017-08-29 07:48:37 (GMT)
commitf9d42d821c49e0a12c77c100857b914717b9bc0a (patch)
tree91258011c9de7d9f4d7306ef6e72f51589a0bbb7 /common
parentae64226dbec2a50a2d88027018c9bd25b20c4ae0 (diff)
downloadu-boot-f9d42d821c49e0a12c77c100857b914717b9bc0a.tar.xz
spl: do not repeat timer init on i.MX6
The GPT timer was already initialised in board_init_f() as it is needed in dram init. Do not repeat timer init in board_init_r(). Signed-off-by: Anatolij Gustschin <agust@denx.de> Acked-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'common')
-rw-r--r--common/spl/spl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spl/spl.c b/common/spl/spl.c
index d245cfc..8b219ba 100644
--- a/common/spl/spl.c
+++ b/common/spl/spl.c
@@ -379,7 +379,7 @@ void board_init_r(gd_t *dummy1, ulong dummy2)
if (spl_init())
hang();
}
-#ifndef CONFIG_PPC
+#if !defined(CONFIG_PPC) && !defined(CONFIG_ARCH_MX6)
/*
* timer_init() does not exist on PPC systems. The timer is initialized
* and enabled (decrementer) in interrupt_init() here.