projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
44cd6de
)
[PATCH] Fix 440SPe rev B detection from previous patch
author
Stefan Roese
<sr@denx.de>
Mon, 15 Jan 2007 08:46:29 +0000
(09:46 +0100)
committer
Stefan Roese
<sr@denx.de>
Mon, 15 Jan 2007 08:46:29 +0000
(09:46 +0100)
Signed-off-by: Stefan Roese <sr@denx.de>
cpu/ppc4xx/cpu.c
patch
|
blob
|
history
diff --git
a/cpu/ppc4xx/cpu.c
b/cpu/ppc4xx/cpu.c
index 53da5a3e76af445120cb7b46215d52db8eba2b67..57a7e8d6e21810eba0ec432108b46f4d1065674f 100644
(file)
--- a/
cpu/ppc4xx/cpu.c
+++ b/
cpu/ppc4xx/cpu.c
@@
-439,7
+439,7
@@
int ppc440spe_revB() {
unsigned int pvr;
pvr = get_pvr();
- if (
pvr == PVR_440SPe_RB
)
+ if (
(pvr == PVR_440SPe_6_RB) || (pvr == PVR_440SPe_RB)
)
return 1;
else
return 0;