aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86_64/kernel/head64.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86_64/kernel/head64.c')
-rw-r--r--arch/x86_64/kernel/head64.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/arch/x86_64/kernel/head64.c b/arch/x86_64/kernel/head64.c
index f2461fde9f8f..6716cbfc34ac 100644
--- a/arch/x86_64/kernel/head64.c
+++ b/arch/x86_64/kernel/head64.c
@@ -58,7 +58,6 @@ static void __init copy_bootdata(char *real_mode_data)
58 58
59void __init x86_64_start_kernel(char * real_mode_data) 59void __init x86_64_start_kernel(char * real_mode_data)
60{ 60{
61 char *s;
62 int i; 61 int i;
63 62
64 for (i = 0; i < 256; i++) 63 for (i = 0; i < 256; i++)
@@ -85,19 +84,5 @@ void __init x86_64_start_kernel(char * real_mode_data)
85#ifdef CONFIG_SMP 84#ifdef CONFIG_SMP
86 cpu_set(0, cpu_online_map); 85 cpu_set(0, cpu_online_map);
87#endif 86#endif
88 s = strstr(saved_command_line, "earlyprintk=");
89 if (s != NULL)
90 setup_early_printk(strchr(s, '=') + 1);
91#ifdef CONFIG_NUMA
92 s = strstr(saved_command_line, "numa=");
93 if (s != NULL)
94 numa_setup(s+5);
95#endif
96 if (strstr(saved_command_line, "disableapic"))
97 disable_apic = 1;
98 /* You need early console to see that */
99 if (__pa_symbol(&_end) >= KERNEL_TEXT_SIZE)
100 panic("Kernel too big for kernel mapping\n");
101
102 start_kernel(); 87 start_kernel();
103} 88}