[PATCH] Fix 440SPe rev B detection from previous patch
authorStefan Roese <sr@denx.de>
Mon, 15 Jan 2007 08:46:29 +0000 (09:46 +0100)
committerStefan 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

index 53da5a3e76af445120cb7b46215d52db8eba2b67..57a7e8d6e21810eba0ec432108b46f4d1065674f 100644 (file)
@@ -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;