diff options
author | Francois Retief <fgretief@spaceteq.co.za> | 2015-10-28 14:29:32 +0200 |
---|---|---|
committer | Francois Retief <fgretief@spaceteq.co.za> | 2015-12-03 13:15:48 +0200 |
commit | e17c5200c7e9a802783a53d4f4457fa68f7fa074 (patch) | |
tree | 3d6c2fe4a6deb1c4b1f1dfac50482b15e710b726 /common/board_r.c | |
parent | a5b629a33e717e794db8db5b0fedbd3aa254e711 (diff) | |
download | u-boot-e17c5200c7e9a802783a53d4f4457fa68f7fa074.tar.gz |
sparc: Initial ground work for generic board initialization
Initial ground work in preperation for generic board initialization
code for the SPARC architecture.
Signed-off-by: Francois Retief <fgretief@spaceteq.co.za>
Diffstat (limited to 'common/board_r.c')
-rw-r--r-- | common/board_r.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/board_r.c b/common/board_r.c index a41fb547a3..f1dfa68fd5 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -813,7 +813,8 @@ init_fnc_t init_sequence_r[] = { initr_flash, #endif INIT_FUNC_WATCHDOG_RESET -#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_X86) +#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_X86) || \ + defined(CONFIG_SPARC) /* initialize higher level parts of CPU like time base and timers */ cpu_init_r, #endif |