From: Russell King Date: Mon, 17 Jan 2011 18:01:58 +0000 (+0000) Subject: ARM: v6k: only allow SMP if we have v6k or v7 CPU X-Git-Tag: v2.6.39-rc1~463^2~1^2~4 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=fbb4ddacb6b70b3178fcb7e3debc5180e6b6cd2f;p=~emulex%2Finfiniband.git ARM: v6k: only allow SMP if we have v6k or v7 CPU SMP extensions are only supported on ARMv6k or ARMv7 architectures, so only offer the option if we're building for such an architecture. Acked-by: Tony Lindgren Tested-by: Sourav Poddar Tested-by: Will Deacon Signed-off-by: Russell King --- diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 27ec471fb5b..d3f5674bece 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1251,6 +1251,7 @@ source "kernel/time/Kconfig" config SMP bool "Symmetric Multi-Processing (EXPERIMENTAL)" depends on EXPERIMENTAL + depends on CPU_V6K || CPU_V7 depends on GENERIC_CLOCKEVENTS depends on REALVIEW_EB_ARM11MP || REALVIEW_EB_A9MP || \ MACH_REALVIEW_PB11MP || MACH_REALVIEW_PBX || ARCH_OMAP4 || \