diff options
author | Poonam Aggrwal | 2009-09-03 19:42:40 +0530 |
---|---|---|
committer | Kumar Gala | 2009-09-08 09:10:08 -0500 |
commit | 21170c80a83f1e60ce7f6f83005e06a5c2d15a8e (patch) | |
tree | 2d582b31526556eebbc469ace17d177f23d10baf /cpu/mpc8xxx | |
parent | f8027f6b4789e3340f10620d8fb6113b95b88d9c (diff) |
ppc/85xx/86xx: Bug fix: call to puts in probecpu() moved to checkcpu().
While in probecpu() UART is still not initialized.
Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/mpc8xxx')
-rw-r--r-- | cpu/mpc8xxx/cpu.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cpu/mpc8xxx/cpu.c b/cpu/mpc8xxx/cpu.c index c73ac3cc6d2..00791e11bd5 100644 --- a/cpu/mpc8xxx/cpu.c +++ b/cpu/mpc8xxx/cpu.c @@ -107,12 +107,6 @@ int probecpu (void) gd->cpu = identify_cpu(ver); -#ifndef CONFIG_MP - if (cpu_numcores() > 1) { - puts("Unicore software on multiprocessor system!!\n" - "To enable mutlticore build define CONFIG_MP\n"); - } -#endif return 0; } |