diff options
author | Poonam Aggrwal <poonam.aggrwal@freescale.com> | 2009-07-31 12:08:14 +0530 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2009-08-28 17:12:38 -0500 |
commit | 0e870980a64584a591af775bb9c9fe9450124df9 (patch) | |
tree | 627bfb5272eb2508ff8ed9027e00d86897af7fee /lib_ppc/board.c | |
parent | 18bacc2027f8531d8dec15ba8da3242dfb4e63f3 (diff) | |
download | u-boot-0e870980a64584a591af775bb9c9fe9450124df9.tar.gz u-boot-0e870980a64584a591af775bb9c9fe9450124df9.tar.xz u-boot-0e870980a64584a591af775bb9c9fe9450124df9.zip |
8xxx: Removed CONFIG_NUM_CPUS from 85xx/86xx
The number of CPUs are getting detected dynamically by checking the
processor SVR value. Also removed CONFIG_NUM_CPUS references from all
the platforms with 85xx/86xx processors.
This can help to use the same u-boot image across the platforms.
Also revamped and corrected few Freescale Copyright messages.
Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'lib_ppc/board.c')
-rw-r--r-- | lib_ppc/board.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 6dd4d56ff3..9faf7f2a0b 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -291,6 +291,9 @@ init_fnc_t *init_sequence[] = { board_early_init_f, #endif +#if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) + probecpu, +#endif #if !defined(CONFIG_8xx_CPUCLK_DEFAULT) get_clocks, /* get CPU and bus clocks (etc.) */ #if defined(CONFIG_TQM8xxL) && !defined(CONFIG_TQM866M) \ |