aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/Kconfig
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2011-10-01 15:09:39 -0400
committerArnd Bergmann <arnd@arndb.de>2011-10-01 15:09:39 -0400
commit15e0d9e37c7fe9711b60f47221c394d45553ad8c (patch)
treefd46b3ef48612d8c39a80627ee5c8fa9c422e15e /arch/arm/Kconfig
parent82b9c18dc0ee38b5c78c5d09b9cffc79d98613c5 (diff)
ARM: pm: let platforms select cpu_suspend support
Support for the cpu_suspend functions is only built-in when CONFIG_PM_SLEEP is enabled, but omap3/4, exynos4 and pxa always call cpu_suspend when CONFIG_PM is enabled. Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r--arch/arm/Kconfig4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig
index 497af51e9176..3445f50b0b7d 100644
--- a/arch/arm/Kconfig
+++ b/arch/arm/Kconfig
@@ -631,6 +631,7 @@ config ARCH_PXA
631 select SPARSE_IRQ 631 select SPARSE_IRQ
632 select AUTO_ZRELADDR 632 select AUTO_ZRELADDR
633 select MULTI_IRQ_HANDLER 633 select MULTI_IRQ_HANDLER
634 select ARM_CPU_SUSPEND if PM
634 help 635 help
635 Support for Intel/Marvell's PXA2xx/PXA3xx processor line. 636 Support for Intel/Marvell's PXA2xx/PXA3xx processor line.
636 637
@@ -2077,6 +2078,9 @@ config ARCH_SUSPEND_POSSIBLE
2077 CPU_V6 || CPU_V6K || CPU_V7 || CPU_XSC3 || CPU_XSCALE 2078 CPU_V6 || CPU_V6K || CPU_V7 || CPU_XSC3 || CPU_XSCALE
2078 def_bool y 2079 def_bool y
2079 2080
2081config ARM_CPU_SUSPEND
2082 def_bool PM_SLEEP
2083
2080endmenu 2084endmenu
2081 2085
2082source "net/Kconfig" 2086source "net/Kconfig"