diff options
author | wdenk <wdenk> | 2004-12-18 22:35:43 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-12-18 22:35:43 +0000 |
commit | f7d1572bf51619554f278cb543ef0445baa3a1f8 (patch) | |
tree | ac5ad0054651a4c3596f9809f534df4587163111 /cpu/mpc8xx | |
parent | 8e6b47a89b6db05594f559f7829e5dc54c0df86e (diff) |
Add support for UC100 boardLABEL_2004_12_18_2335
Diffstat (limited to 'cpu/mpc8xx')
-rw-r--r-- | cpu/mpc8xx/cpu.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cpu/mpc8xx/cpu.c b/cpu/mpc8xx/cpu.c index 89a176e4265..5f92a371b0f 100644 --- a/cpu/mpc8xx/cpu.c +++ b/cpu/mpc8xx/cpu.c @@ -190,10 +190,17 @@ static int check_CPU (long clock, uint pvr, uint immr) default: suf = NULL; break; } +#ifndef CONFIG_MPC857 if (suf) printf ("%cPC862%sZPnn%s", pre, mid, suf); else printf ("unknown MPC862 (0x%08x)", k); +#else + if (suf) + printf ("%cPC857TZPnn%s", pre, suf); /* only 857T tested right now! */ + else + printf ("unknown MPC857 (0x%08x)", k); +#endif printf (" at %s MHz:", strmhz (buf, clock)); |