diff options
Diffstat (limited to 'xen/arch/x86/setup.c')
-rw-r--r-- | xen/arch/x86/setup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xen/arch/x86/setup.c b/xen/arch/x86/setup.c index e06ada1a70..2b9dbe3e88 100644 --- a/xen/arch/x86/setup.c +++ b/xen/arch/x86/setup.c @@ -94,7 +94,8 @@ char __attribute__ ((__section__(".bss.stack_aligned"))) cpu0_stack[STACK_SIZE]; struct cpuinfo_x86 __read_mostly boot_cpu_data = { 0, 0, 0, 0, -1 }; -unsigned long __read_mostly mmu_cr4_features = X86_CR4_PSE | X86_CR4_PGE | X86_CR4_PAE; +unsigned long __read_mostly mmu_cr4_features = + X86_CR4_PSE | X86_CR4_PGE | X86_CR4_PAE; bool_t __initdata acpi_disabled; bool_t __initdata acpi_force; |