From: takada Date: Thu, 11 Jan 2007 07:15:44 +0000 (-0800) Subject: [PATCH] fix typo in geode_configre()@cyrix.c X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e4f0ae0ea63caceff37a13f281a72652b7ea71ba;p=linux-beck.git [PATCH] fix typo in geode_configre()@cyrix.c We write back the wrong register when configuring the Geode processor. Instead of storing to CCR4, it stores to CCR3. Cc: Jordan Crouse Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/i386/kernel/cpu/cyrix.c b/arch/i386/kernel/cpu/cyrix.c index c0c3b59de32c..abcff92f994c 100644 --- a/arch/i386/kernel/cpu/cyrix.c +++ b/arch/i386/kernel/cpu/cyrix.c @@ -173,7 +173,7 @@ static void __cpuinit geode_configure(void) 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();