[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 <jordan.crouse@amd.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by takada and committed by Linus Torvalds e4f0ae0e 56fb5fe9

+1 -1
+1 -1
arch/i386/kernel/cpu/cyrix.c
··· 173 173 ccr4 = getCx86(CX86_CCR4); 174 174 ccr4 |= 0x38; /* FPU fast, DTE cache, Mem bypass */ 175 175 176 - setCx86(CX86_CCR3, ccr3); 176 + setCx86(CX86_CCR4, ccr4); 177 177 178 178 set_cx86_memwb(); 179 179 set_cx86_reorder();