aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/setup.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2009-08-20 05:11:52 -0400
committerThomas Gleixner <tglx@linutronix.de>2009-08-31 03:35:45 -0400
commitb3f1b617f49447df6c3f5fac9c225aaea8b724ea (patch)
tree9c1cc5a96be1330868312d7970583838790b14a3 /arch/x86/kernel/setup.c
parent90e1c6969d8711edb888a00ec54c74370f125c8f (diff)
x86: Move get/find_smp_config to x86_init_ops
Replace the quirk machinery by a x86_init_ops function which defaults to the standard implementation. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/setup.c')
-rw-r--r--arch/x86/kernel/setup.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
index c2a8090e831..54043cb7ba6 100644
--- a/arch/x86/kernel/setup.c
+++ b/arch/x86/kernel/setup.c
@@ -981,13 +981,11 @@ void __init setup_arch(char **cmdline_p)
981 */ 981 */
982 acpi_boot_init(); 982 acpi_boot_init();
983 983
984#if defined(CONFIG_X86_MPPARSE) || defined(CONFIG_X86_VISWS)
985 /* 984 /*
986 * get boot-time SMP configuration: 985 * get boot-time SMP configuration:
987 */ 986 */
988 if (smp_found_config) 987 if (smp_found_config)
989 get_smp_config(); 988 get_smp_config();
990#endif
991 989
992 prefill_possible_map(); 990 prefill_possible_map();
993 991