projects
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d87c57b
)
mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
author
Scott Wood
<scottwood@freescale.com>
Mon, 16 Apr 2007 19:34:15 +0000
(14:34 -0500)
committer
Kim Phillips
<kim.phillips@freescale.com>
Mon, 23 Apr 2007 21:31:59 +0000
(16:31 -0500)
Signed-off-by: Scott Wood <scottwood@freescale.com>
cpu/mpc83xx/cpu.c
patch
|
blob
|
history
diff --git
a/cpu/mpc83xx/cpu.c
b/cpu/mpc83xx/cpu.c
index
e934ba6
..
d569c49
100644
(file)
--- a/
cpu/mpc83xx/cpu.c
+++ b/
cpu/mpc83xx/cpu.c
@@
-124,6
+124,18
@@
int checkcpu(void)
case SPR_8321_REV11:
puts("MPC8321, ");
break;
+ case SPR_8311_REV10:
+ puts("MPC8311, ");
+ break;
+ case SPR_8311E_REV10:
+ puts("MPC8311E, ");
+ break;
+ case SPR_8313_REV10:
+ puts("MPC8313, ");
+ break;
+ case SPR_8313E_REV10:
+ puts("MPC8313E, ");
+ break;
default:
puts("Rev: Unknown revision number.\nWarning: Unsupported cpu revision!\n");
return 0;