From: Stefan Roese Date: Mon, 15 Jan 2007 08:46:29 +0000 (+0100) Subject: [PATCH] Fix 440SPe rev B detection from previous patch X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=5a5c56986a9ccf71642c8b6374eb18487b15fecd;p=project%2Fbcm63xx%2Fu-boot.git [PATCH] Fix 440SPe rev B detection from previous patch Signed-off-by: Stefan Roese --- diff --git a/cpu/ppc4xx/cpu.c b/cpu/ppc4xx/cpu.c index 53da5a3e76..57a7e8d6e2 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;