diff options
| author | Stefan Roese <[email protected]> | 2007-01-15 09:46:29 +0100 |
|---|---|---|
| committer | Stefan Roese <[email protected]> | 2007-01-15 09:46:29 +0100 |
| commit | 5a5c56986a9ccf71642c8b6374eb18487b15fecd (patch) | |
| tree | 45fcab70740564b3ca8ce62a9a441d717c8586ac /cpu | |
| parent | 44cd6de2e1b0cdff76bf8c85a1c93c6844da62fd (diff) | |
[PATCH] Fix 440SPe rev B detection from previous patch
Signed-off-by: Stefan Roese <[email protected]>
Diffstat (limited to 'cpu')
| -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 53da5a3e76a..57a7e8d6e21 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; |
