From 5a5c56986a9ccf71642c8b6374eb18487b15fecd Mon Sep 17 00:00:00 2001
From: Stefan Roese <sr@denx.de>
Date: Mon, 15 Jan 2007 09:46:29 +0100
Subject: [PATCH] [PATCH] Fix 440SPe rev B detection from previous patch

Signed-off-by: Stefan Roese <sr@denx.de>
---
 cpu/ppc4xx/cpu.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
-- 
GitLab