diff options
author | Markos Chandras <markos.chandras@imgtec.com> | 2014-11-25 09:15:45 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-05-13 05:14:23 -0700 |
commit | 54cca1007c3c0e6e6f2802ae9890f7d7c9cf9809 (patch) | |
tree | d787be667f5b8a2236a3174669d37442ab49c10a | |
parent | 5bd1f3713cd795cdd750b869f98674b40748ef92 (diff) | |
download | lwn-54cca1007c3c0e6e6f2802ae9890f7d7c9cf9809.tar.gz lwn-54cca1007c3c0e6e6f2802ae9890f7d7c9cf9809.zip |
MIPS: Kconfig: Disable SMP/CPS for 64-bit
Commit 6ca716f2e5571d25a3899c6c5c91ff72ea6d6f5e upstream.
A 64-bit build for Malta produces far too many build problems
when SMP/CPS is selected. Moreover, there is currently no 64-bit
product with SMP/CPS so we disable SMP/CPS when building for
64-bit until it is properly supported.
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Cc: Paul Burton <paul.burton@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/8573/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | arch/mips/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index bb332109f2ca..1a313c468d65 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -2142,7 +2142,7 @@ config MIPS_CMP config MIPS_CPS bool "MIPS Coherent Processing System support" - depends on SYS_SUPPORTS_MIPS_CPS + depends on SYS_SUPPORTS_MIPS_CPS && !64BIT select MIPS_CM select MIPS_CPC select MIPS_CPS_PM if HOTPLUG_CPU |