aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/Kconfig
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-01-27 11:07:08 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-29 08:17:00 -0500
commit3e5095d15276efd14a45393666b1bb7536bf179f (patch)
tree830cd4cd2803e44a99629b6f2c3307b4c82dd302 /arch/x86/Kconfig
parentf2fc0e3071230bb9ea9f64a08c3e619ad1357cfb (diff)
x86: replace CONFIG_X86_SMP with CONFIG_SMP
The x86/Voyager subarch used to have this distinction between 'x86 SMP support' and 'Voyager SMP support': config X86_SMP bool depends on SMP && ((X86_32 && !X86_VOYAGER) || X86_64) This is a pointless distinction - Voyager can (and already does) use smp_ops to implement various SMP quirks it has - and it can be extended more to cover all the specialities of Voyager. So remove this complication in the Kconfig space. Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r--arch/x86/Kconfig7
1 files changed, 1 insertions, 6 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 8e6413e0e7cb..3671506fb8df 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -173,11 +173,6 @@ config GENERIC_PENDING_IRQ
173 depends on GENERIC_HARDIRQS && SMP 173 depends on GENERIC_HARDIRQS && SMP
174 default y 174 default y
175 175
176config X86_SMP
177 bool
178 depends on SMP && ((X86_32 && !X86_VOYAGER) || X86_64)
179 default y
180
181config USE_GENERIC_SMP_HELPERS 176config USE_GENERIC_SMP_HELPERS
182 def_bool y 177 def_bool y
183 depends on SMP 178 depends on SMP
@@ -203,7 +198,7 @@ config X86_BIOS_REBOOT
203 198
204config X86_TRAMPOLINE 199config X86_TRAMPOLINE
205 bool 200 bool
206 depends on X86_SMP || (X86_VOYAGER && SMP) || (64BIT && ACPI_SLEEP) 201 depends on SMP || (64BIT && ACPI_SLEEP)
207 default y 202 default y
208 203
209config KTIME_SCALAR 204config KTIME_SCALAR