x86: should use array directly for early_ptr

Signed-off-by: Yinghai Lu <yinghai.lu@sun.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
Yinghai Lu 2008-01-30 13:33:33 +01:00 committed by Ingo Molnar
parent ac629a98bf
commit 3effef1f3b

View file

@ -333,10 +333,10 @@ void __init setup_arch(char **cmdline_p)
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
/* setup to use the early static init tables during kernel startup */ /* setup to use the early static init tables during kernel startup */
x86_cpu_to_apicid_early_ptr = (void *)&x86_cpu_to_apicid_init; x86_cpu_to_apicid_early_ptr = (void *)x86_cpu_to_apicid_init;
x86_bios_cpu_apicid_early_ptr = (void *)&x86_bios_cpu_apicid_init; x86_bios_cpu_apicid_early_ptr = (void *)x86_bios_cpu_apicid_init;
#ifdef CONFIG_NUMA #ifdef CONFIG_NUMA
x86_cpu_to_node_map_early_ptr = (void *)&x86_cpu_to_node_map_init; x86_cpu_to_node_map_early_ptr = (void *)x86_cpu_to_node_map_init;
#endif #endif
#endif #endif