diff options
author | Yinghai Lu <yhlu.kernel@gmail.com> | 2008-06-19 12:15:01 -0700 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-08 10:39:19 +0200 |
commit | a4caa18efe468acb3522e30763de57a67b3e438b (patch) | |
tree | bb897cdd2bdbd804aa1c7ae56facf1524f5d8243 /arch/x86/Kconfig | |
parent | 6695c85b2e6f9f2e9ccaa8af38b72f5ab4a5184f (diff) | |
download | linux-3.10-a4caa18efe468acb3522e30763de57a67b3e438b.tar.gz linux-3.10-a4caa18efe468acb3522e30763de57a67b3e438b.tar.bz2 linux-3.10-a4caa18efe468acb3522e30763de57a67b3e438b.zip |
x86: fix compiling when CONFIG_X86_MPPARSE is not set
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r-- | arch/x86/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 0804a889c27..25251799337 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -307,7 +307,7 @@ if X86_GENERICARCH config X86_NUMAQ bool "NUMAQ (IBM/Sequent)" - depends on SMP && X86_32 + depends on SMP && X86_32 && X86_MPPARSE select NUMA help This option is used for getting Linux to run on a NUMAQ (IBM/Sequent) |