aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/setup.c')
-rw-r--r--arch/x86/kernel/setup.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
index 4c616be28506..6285697b6e56 100644
--- a/arch/x86/kernel/setup.c
+++ b/arch/x86/kernel/setup.c
@@ -189,9 +189,7 @@ struct ist_info ist_info;
189#endif 189#endif
190 190
191#else 191#else
192struct cpuinfo_x86 boot_cpu_data __read_mostly = { 192struct cpuinfo_x86 boot_cpu_data __read_mostly;
193 .x86_phys_bits = MAX_PHYSMEM_BITS,
194};
195EXPORT_SYMBOL(boot_cpu_data); 193EXPORT_SYMBOL(boot_cpu_data);
196#endif 194#endif
197 195
@@ -851,6 +849,7 @@ void __init setup_arch(char **cmdline_p)
851 __flush_tlb_all(); 849 __flush_tlb_all();
852#else 850#else
853 printk(KERN_INFO "Command line: %s\n", boot_command_line); 851 printk(KERN_INFO "Command line: %s\n", boot_command_line);
852 boot_cpu_data.x86_phys_bits = MAX_PHYSMEM_BITS;
854#endif 853#endif
855 854
856 /* 855 /*