diff options
Diffstat (limited to 'cpu/mpc86xx/cpu.c')
| -rw-r--r-- | cpu/mpc86xx/cpu.c | 10 | 
1 files changed, 6 insertions, 4 deletions
| diff --git a/cpu/mpc86xx/cpu.c b/cpu/mpc86xx/cpu.c index 32d06d20e..04409cec6 100644 --- a/cpu/mpc86xx/cpu.c +++ b/cpu/mpc86xx/cpu.c @@ -30,6 +30,8 @@  #include <mpc86xx.h>  #include <asm/fsl_law.h> +DECLARE_GLOBAL_DATA_PTR; +  /*   * Default board reset function   */ @@ -61,12 +63,12 @@ checkcpu(void)  	puts("CPU:   "); -	cpu = identify_cpu(ver); -	if (cpu) { +	cpu = gd->cpu; + +	if (cpu->name)  		puts(cpu->name); -	} else { +	else  		puts("Unknown"); -	}  	printf(", Version: %d.%d, (0x%08x)\n", major, minor, svr);  	puts("Core:  "); |