From: Stefan Roese <sr@denx.de>
Date: Thu, 18 May 2006 17:21:53 +0000 (+0200)
Subject: Fix problem in PVR detection for 440GR
X-Git-Tag: v2025.01-rc5-pxa1908~23030
X-Git-Url: http://git.dujemihanovic.xyz/html/static/gitweb.css?a=commitdiff_plain;h=5770a1e488621a9e7e344afed7c921ff4e715a63;p=u-boot.git

Fix problem in PVR detection for 440GR
Patch by Stefan Roese, 18 May 2006
---

diff --git a/CHANGELOG b/CHANGELOG
index af6e115dcf..add6b2980c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,9 @@
 Changes since U-Boot 1.1.4:
 ======================================================================
 
+* Fix problem in PVR detection for 440GR
+  Patch by Stefan Roese, 18 May 2006
+
 * Fix gcc 3.4.x AFLAGS setting for m68k platform.
 
 * Enable autoboot for M5271EVB board.
diff --git a/cpu/ppc4xx/cpu.c b/cpu/ppc4xx/cpu.c
index 095e2b866d..d9b5d32c90 100644
--- a/cpu/ppc4xx/cpu.c
+++ b/cpu/ppc4xx/cpu.c
@@ -234,7 +234,7 @@ int checkcpu (void)
 		puts("GR Rev. A");
 		break;
 
-	case PVR_440EP_RB: /* 440EP rev C and 440GR rev B have same PVR */
+	case PVR_440GR_RB: /* 440EP rev C and 440GR rev B have same PVR */
 		puts("GR Rev. B");
 		break;
 #endif /* CONFIG_440GR */