summaryrefslogtreecommitdiffstats
path: root/cpu/mpc85xx
diff options
context:
space:
mode:
authorPoonam Aggrwal <poonam.aggrwal@freescale.com>2009-09-03 19:42:40 +0530
committerKumar Gala <galak@kernel.crashing.org>2009-09-08 09:10:08 -0500
commit21170c80a83f1e60ce7f6f83005e06a5c2d15a8e (patch)
tree2d582b31526556eebbc469ace17d177f23d10baf /cpu/mpc85xx
parentf8027f6b4789e3340f10620d8fb6113b95b88d9c (diff)
downloadtalos-obmc-uboot-21170c80a83f1e60ce7f6f83005e06a5c2d15a8e.tar.gz
talos-obmc-uboot-21170c80a83f1e60ce7f6f83005e06a5c2d15a8e.zip
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/mpc85xx')
-rw-r--r--cpu/mpc85xx/cpu.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/cpu/mpc85xx/cpu.c b/cpu/mpc85xx/cpu.c
index 63bdb6fde1..8b3810f5b0 100644
--- a/cpu/mpc85xx/cpu.c
+++ b/cpu/mpc85xx/cpu.c
@@ -61,6 +61,10 @@ int checkcpu (void)
minor = SVR_MIN(svr);
if (cpu_numcores() > 1) {
+#ifndef CONFIG_MP
+ puts("Unicore software on multiprocessor system!!\n"
+ "To enable mutlticore build define CONFIG_MP\n");
+#endif
volatile ccsr_pic_t *pic = (void *)(CONFIG_SYS_MPC85xx_PIC_ADDR);
printf("CPU%d: ", pic->whoami);
} else {
OpenPOWER on IntegriCloud