diff options
author | Simon Glass <sjg@chromium.org> | 2017-01-23 13:31:22 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-01-25 17:38:41 -0500 |
commit | cbcbf71bf238abd6daf13116b9a209c8fc98ae64 (patch) | |
tree | 693a11758b7eea2d9c1f47962caf5c74bd4df870 /board/freescale/p1010rdb/spl.c | |
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/p1010rdb/spl.c')
-rw-r--r-- | board/freescale/p1010rdb/spl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/p1010rdb/spl.c b/board/freescale/p1010rdb/spl.c index c22e215675..05c76f2e45 100644 --- a/board/freescale/p1010rdb/spl.c +++ b/board/freescale/p1010rdb/spl.c @@ -69,7 +69,7 @@ void board_init_r(gd_t *gd, ulong dest_addr) bd->bi_memstart = CONFIG_SYS_INIT_L2_ADDR; bd->bi_memsize = CONFIG_SYS_L2_SIZE; - probecpu(); + arch_cpu_init(); get_clocks(); mem_malloc_init(CONFIG_SPL_RELOC_MALLOC_ADDR, CONFIG_SPL_RELOC_MALLOC_SIZE); |