Skip to content

Commit

Permalink
x86, asm, cleanup: Replace open-coded control register values with sy…
Browse files Browse the repository at this point in the history
…mbolic

Clean up an unnecessary open-coded control register values.

Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Link: http://lkml.kernel.org/n/tip-um7za1nzf6brb17o0h4om6e3@git.kernel.org
  • Loading branch information
H. Peter Anvin committed Jun 25, 2013
1 parent d1fbefc commit a3d7b7d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion arch/x86/kernel/cpu/mtrr/cyrix.c
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ static void post_set(void)
setCx86(CX86_CCR3, ccr3);

/* Enable caches */
write_cr0(read_cr0() & 0xbfffffff);
write_cr0(read_cr0() & ~X86_CR0_CD);

/* Restore value of CR4 */
if (cpu_has_pge)
Expand Down
2 changes: 1 addition & 1 deletion arch/x86/kernel/cpu/mtrr/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ static void post_set(void) __releases(set_atomicity_lock)
mtrr_wrmsr(MSR_MTRRdefType, deftype_lo, deftype_hi);

/* Enable caches */
write_cr0(read_cr0() & 0xbfffffff);
write_cr0(read_cr0() & ~X86_CR0_CD);

/* Restore value of CR4 */
if (cpu_has_pge)
Expand Down
2 changes: 1 addition & 1 deletion arch/x86/kernel/relocate_kernel_32.S
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ identity_mapped:
movl CP_PA_PGD(%ebx), %eax
movl %eax, %cr3
movl %cr0, %eax
orl $(1<<31), %eax
orl $X86_CR0_PG, %eax
movl %eax, %cr0
lea PAGE_SIZE(%edi), %esp
movl %edi, %eax
Expand Down

0 comments on commit a3d7b7d

Please sign in to comment.