diff options
author | Simon Glass <sjg@chromium.org> | 2017-03-28 10:27:29 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-05 13:55:08 -0400 |
commit | 8749fa6af3e94630eeb02bc3a45fe9bdcb8d3087 (patch) | |
tree | bb62d9299642dbdfa3a53dc430906c0b3e52f85c /common | |
parent | 689697785e04aefd08b6efdc4e47a737819da173 (diff) | |
download | u-boot-8749fa6af3e94630eeb02bc3a45fe9bdcb8d3087.zip u-boot-8749fa6af3e94630eeb02bc3a45fe9bdcb8d3087.tar.gz u-boot-8749fa6af3e94630eeb02bc3a45fe9bdcb8d3087.tar.bz2 |
board_f: powerpc: Make prt_8260_rsr(), prt_8260_clks() private
Move these two function calls into checkcpu(), which is called on this
arch immediately after these two.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'common')
-rw-r--r-- | common/board_f.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/common/board_f.c b/common/board_f.c index f1c97fc..91cb2a7 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -842,10 +842,6 @@ static const init_fnc_t init_sequence_f[] = { console_init_f, /* stage 1 init of console */ display_options, /* say that we are here */ display_text_info, /* show debugging info if required */ -#if defined(CONFIG_MPC8260) - prt_8260_rsr, - prt_8260_clks, -#endif /* CONFIG_MPC8260 */ #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SH) checkcpu, #endif |