diff options
| author | Simon Glass <[email protected]> | 2017-03-28 10:27:29 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2017-04-05 13:55:08 -0400 |
| commit | 8749fa6af3e94630eeb02bc3a45fe9bdcb8d3087 (patch) | |
| tree | bb62d9299642dbdfa3a53dc430906c0b3e52f85c /include | |
| parent | 689697785e04aefd08b6efdc4e47a737819da173 (diff) | |
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 <[email protected]>
Reviewed-by: Stefan Roese <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/common.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/common.h b/include/common.h index 2e02709c660..35e2b154ae9 100644 --- a/include/common.h +++ b/include/common.h @@ -637,9 +637,7 @@ int serial_stub_tstc(struct stdio_dev *sdev); /* $(CPU)/speed.c */ int get_clocks (void); -#if defined(CONFIG_MPC8260) -int prt_8260_clks (void); -#elif defined(CONFIG_MPC5xxx) +#if defined(CONFIG_MPC5xxx) int prt_mpc5xxx_clks (void); #endif #ifdef CONFIG_4xx @@ -710,9 +708,6 @@ ulong cpu_init_f(void); #endif int cpu_init_r (void); -#if defined(CONFIG_MPC8260) -int prt_8260_rsr (void); -#endif /* $(CPU)/interrupts.c */ int interrupt_init (void); |
