LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* fix typo in geode_configre()@cyrix.c
@ 2007-01-09  9:41 takada
  2007-01-09 15:43 ` Lennart Sorensen
  2007-01-09 17:33 ` Lennart Sorensen
  0 siblings, 2 replies; 11+ messages in thread
From: takada @ 2007-01-09  9:41 UTC (permalink / raw)
  To: LKML


In kernel 2.6, write back wrong register when configure Geode processor.
Instead of storing to CCR4, it stores to CCR3.

--- linux-2.6.19/arch/i386/kernel/cpu/cyrix.c.orig	2007-01-09 16:45:21.000000000 +0900
+++ linux-2.6.19/arch/i386/kernel/cpu/cyrix.c	2007-01-09 17:10:13.000000000 +0900
@@ -173,7 +173,7 @@ static void __cpuinit geode_configure(vo
 	ccr4 = getCx86(CX86_CCR4);
 	ccr4 |= 0x38;		/* FPU fast, DTE cache, Mem bypass */
 	
-	setCx86(CX86_CCR3, ccr3);
+	setCx86(CX86_CCR4, ccr4);
 	
 	set_cx86_memwb();
 	set_cx86_reorder();	

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2007-01-24  4:04 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-01-09  9:41 fix typo in geode_configre()@cyrix.c takada
2007-01-09 15:43 ` Lennart Sorensen
2007-01-17  0:15   ` Juergen Beisert
2007-01-09 17:33 ` Lennart Sorensen
2007-01-16 16:38   ` takada
2007-01-16 16:50     ` Lennart Sorensen
2007-01-16 17:12       ` takada
2007-01-24  4:04         ` Andrew Morton
2007-01-16 22:47     ` Lennart Sorensen
2007-01-17  0:24   ` Juergen Beisert
2007-01-17 15:26   ` takada

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).