diff options
author | Simon Glass | 2017-01-23 13:31:22 -0700 |
---|---|---|
committer | Tom Rini | 2017-01-25 17:38:41 -0500 |
commit | cbcbf71bf238abd6daf13116b9a209c8fc98ae64 (patch) | |
tree | 693a11758b7eea2d9c1f47962caf5c74bd4df870 /board/freescale/t208xrdb | |
parent | 4585601ae2147730fcf342ed9b57a2c684503490 (diff) |
powerpc: Drop probecpu() in favour of arch_cpu_init()
To avoid an unnecessary arch-specific call in board_init_f(), rename this
function.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/freescale/t208xrdb')
-rw-r--r-- | board/freescale/t208xrdb/spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/t208xrdb/spl.c b/board/freescale/t208xrdb/spl.c index bb23865d3be..aa8e9285fef 100644 --- a/board/freescale/t208xrdb/spl.c +++ b/board/freescale/t208xrdb/spl.c @@ -73,7 +73,7 @@ void board_init_r(gd_t *gd, ulong dest_addr) bd->bi_memstart = CONFIG_SYS_INIT_L3_ADDR; bd->bi_memsize = CONFIG_SYS_L3_SIZE; - probecpu(); + arch_cpu_init(); get_clocks(); mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR, CONFIG_SPL_RELOC_MALLOC_SIZE); |