board_f: powerpc: Make prt_8260_rsr(), prt_8260_clks() private
authorSimon Glass <sjg@chromium.org>
Tue, 28 Mar 2017 16:27:29 +0000 (10:27 -0600)
committerTom Rini <trini@konsulko.com>
Wed, 5 Apr 2017 17:55:08 +0000 (13:55 -0400)
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>
arch/powerpc/cpu/mpc8260/cpu.c
arch/powerpc/include/asm/processor.h
common/board_f.c
include/common.h

index 9f2be3cb22c7620a4965e074d8fd1d3d3971ff3c..58d1c0261cba5abff3e3031126e679bcd0fff4a3 100644 (file)
@@ -50,7 +50,14 @@ int checkcpu (void)
        uint pvr = get_pvr ();
        uint immr, rev, m, k;
        char buf[32];
-
+       int ret;
+
+       ret = prt_8260_rsr();
+       if (ret)
+               return ret;
+       ret = prt_8260_clks();
+       if (ret)
+               return ret;
        puts ("CPU:   ");
 
        switch (pvr) {
index c032726df1545d78b072802d8740f287a0dad80a..fd38da9fe5e34205fe906992e7e7fad2e1672178 100644 (file)
@@ -1355,6 +1355,8 @@ void ll_puts(const char *);
 void _nmask_and_or_msr(unsigned long nmask, unsigned long or_val);
 
 int prt_83xx_rsr(void);
+int prt_8260_rsr(void);
+int prt_8260_clks(void);
 
 #endif /* ndef ASSEMBLY*/
 
index f1c97fc2a3c6e83f7f3835a27dc034a7ddf4e153..91cb2a770d1d592de88736e2c4f48e788adcb92b 100644 (file)
@@ -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
index 2e02709c660a6eba97df5766b0d0e0856f51773f..35e2b154ae9ed22bd533cfda82397aaa6c42d470 100644 (file)
@@ -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);