aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/xen/enlighten.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/xen/enlighten.c')
-rw-r--r--arch/x86/xen/enlighten.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
index 78a881b7fc41..bd8b8459c3d0 100644
--- a/arch/x86/xen/enlighten.c
+++ b/arch/x86/xen/enlighten.c
@@ -1494,10 +1494,10 @@ static void xen_pvh_set_cr_flags(int cpu)
1494 * set them here. For all, OSFXSR OSXMMEXCPT are set in fpu_init. 1494 * set them here. For all, OSFXSR OSXMMEXCPT are set in fpu_init.
1495 */ 1495 */
1496 if (cpu_has_pse) 1496 if (cpu_has_pse)
1497 set_in_cr4(X86_CR4_PSE); 1497 cr4_set_bits_and_update_boot(X86_CR4_PSE);
1498 1498
1499 if (cpu_has_pge) 1499 if (cpu_has_pge)
1500 set_in_cr4(X86_CR4_PGE); 1500 cr4_set_bits_and_update_boot(X86_CR4_PGE);
1501} 1501}
1502 1502
1503/* 1503/*