diff options
author | Stefan Roese <sr@denx.de> | 2007-01-15 09:46:29 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-01-15 09:46:29 +0100 |
commit | 5a5c56986a9ccf71642c8b6374eb18487b15fecd (patch) | |
tree | 45fcab70740564b3ca8ce62a9a441d717c8586ac /cpu/ppc4xx/cpu.c | |
parent | 44cd6de2e1b0cdff76bf8c85a1c93c6844da62fd (diff) | |
download | u-boot-imx-5a5c56986a9ccf71642c8b6374eb18487b15fecd.zip u-boot-imx-5a5c56986a9ccf71642c8b6374eb18487b15fecd.tar.gz u-boot-imx-5a5c56986a9ccf71642c8b6374eb18487b15fecd.tar.bz2 |
[PATCH] Fix 440SPe rev B detection from previous patch
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'cpu/ppc4xx/cpu.c')
-rw-r--r-- | cpu/ppc4xx/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/ppc4xx/cpu.c b/cpu/ppc4xx/cpu.c index 53da5a3..57a7e8d 100644 --- 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; |