aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2009-06-23 05:20:56 -0400
committerRalf Baechle <ralf@linux-mips.org>2009-06-24 13:34:40 -0400
commit9801b321ecdb6708365b6825bf728c8e433fca00 (patch)
tree1a0ac07e34f22f6f348e1c43ab13fe6923ece51b /arch
parent1b2bc75c1bde6581d2694cb3ed7fb06b69685008 (diff)
MIPS: SMP: Allow suspend and hibernation if CPU hotplug is available
The SMP implementation of suspend and hibernate depends on CPU hotplugging. In the past we didn't have CPU hotplug so suspend and hibernation were not possible on SMP systems. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/mips/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig
index eb7e8d795c6a..3cce4ed5473d 100644
--- a/arch/mips/Kconfig
+++ b/arch/mips/Kconfig
@@ -2145,11 +2145,11 @@ menu "Power management options"
2145 2145
2146config ARCH_HIBERNATION_POSSIBLE 2146config ARCH_HIBERNATION_POSSIBLE
2147 def_bool y 2147 def_bool y
2148 depends on !SMP 2148 depends on SYS_SUPPORTS_HOTPLUG_CPU
2149 2149
2150config ARCH_SUSPEND_POSSIBLE 2150config ARCH_SUSPEND_POSSIBLE
2151 def_bool y 2151 def_bool y
2152 depends on !SMP 2152 depends on SYS_SUPPORTS_HOTPLUG_CPU
2153 2153
2154source "kernel/power/Kconfig" 2154source "kernel/power/Kconfig"
2155 2155