Skip to content

Commit

Permalink
[PATCH] fix typo in geode_configre()@cyrix.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
takada authored and Linus Torvalds committed Jan 12, 2007
1 parent 56fb5fe commit e4f0ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/i386/kernel/cpu/cyrix.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit e4f0ae0

Please sign in to comment.