[coreboot] r1121 - coreboot-v3/mainboard/artecgroup/dbe63

svn at coreboot.org svn at coreboot.org
Fri Jan 23 11:53:53 CET 2009


Author: mraudsepp
Date: 2009-01-23 11:53:53 +0100 (Fri, 23 Jan 2009)
New Revision: 1121

Modified:
   coreboot-v3/mainboard/artecgroup/dbe63/stage1.c
Log:
DBE63: Rename dbe62_msr to dbe63_msr in stage1 code after the copy from dbe62 board code

Signed-off-by: Mart Raudsepp <mart.raudsepp at artecdesign.ee>
Acked-by: Ronald G. Minnich <rminnich at gmail.com>

Modified: coreboot-v3/mainboard/artecgroup/dbe63/stage1.c
===================================================================
--- coreboot-v3/mainboard/artecgroup/dbe63/stage1.c	2009-01-23 10:53:51 UTC (rev 1120)
+++ coreboot-v3/mainboard/artecgroup/dbe63/stage1.c	2009-01-23 10:53:53 UTC (rev 1121)
@@ -32,25 +32,25 @@
 #include <northbridge/amd/geodelx/raminit.h>
 #include <arch/x86/msr.h>
 
-static const struct msrinit dbe62_msr[] = {
+static const struct msrinit dbe63_msr[] = {
 	{.msrnum = 0x10000020, {.lo = 0x00fff80, .hi = 0x20000000}},
 	{.msrnum = 0x10000021, {.lo = 0x80fffe0, .hi = 0x20000000}},
 	{.msrnum = 0x40000020, {.lo = 0x00fff80, .hi = 0x20000000}},
 	{.msrnum = 0x40000021, {.lo = 0x80fffe0, .hi = 0x20000000}},
 };
 
-static void dbe62_msr_init(void)
+static void dbe63_msr_init(void)
 {
 	int i;
-	for (i = 0; i < ARRAY_SIZE(dbe62_msr); i++)
-		wrmsr(dbe62_msr[i].msrnum, dbe62_msr[i].msr);
+	for (i = 0; i < ARRAY_SIZE(dbe63_msr); i++)
+		wrmsr(dbe63_msr[i].msrnum, dbe63_msr[i].msr);
 }
 
 void hardware_stage1(void)
 {
 	post_code(POST_START_OF_MAIN);
 
-	dbe62_msr_init();
+	dbe63_msr_init();
 
 	cs5536_stage1();
 





More information about the coreboot mailing list