summaryrefslogtreecommitdiff
path: root/cpu/mpc85xx/cpu.c
diff options
context:
space:
mode:
authorPoonam Aggrwal <poonam.aggrwal@freescale.com>2009-09-02 13:35:21 +0530
committerTom Rix <Tom.Rix@windriver.com>2009-10-03 09:04:17 -0500
commitea8be4a65b18e8e6d41b7c7687280b1071cb9969 (patch)
tree1cc4fd4b291b78874a03351e0afda9f804b2a5b7 /cpu/mpc85xx/cpu.c
parent865f24dc92d03928c09b7f20a3133823e53c1ac3 (diff)
downloadu-boot-imx-ea8be4a65b18e8e6d41b7c7687280b1071cb9969.zip
u-boot-imx-ea8be4a65b18e8e6d41b7c7687280b1071cb9969.tar.gz
u-boot-imx-ea8be4a65b18e8e6d41b7c7687280b1071cb9969.tar.bz2
ppc/85xx,86xx: Handling Unknown SOC version
Incase the system is detected with Unknown SVR, let the system boot with a default value and a proper message. Now with dynamic detection of SOC properties from SVR, this is necessary to prevent a crash. Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu/mpc85xx/cpu.c')
-rw-r--r--cpu/mpc85xx/cpu.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/cpu/mpc85xx/cpu.c b/cpu/mpc85xx/cpu.c
index 6be98dc..63bdb6f 100644
--- a/cpu/mpc85xx/cpu.c
+++ b/cpu/mpc85xx/cpu.c
@@ -69,13 +69,9 @@ int checkcpu (void)
cpu = gd->cpu;
- if (cpu->name) {
- puts(cpu->name);
- if (IS_E_PROCESSOR(svr))
- puts("E");
- } else {
- puts("Unknown");
- }
+ puts(cpu->name);
+ if (IS_E_PROCESSOR(svr))
+ puts("E");
printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);