diff options
author | Arnd Bergmann <arnd@arndb.de> | 2011-10-01 21:09:39 +0200 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2011-10-01 21:09:39 +0200 |
commit | 15e0d9e37c7fe9711b60f47221c394d45553ad8c (patch) | |
tree | fd46b3ef48612d8c39a80627ee5c8fa9c422e15e /arch/arm/mach-omap2/Kconfig | |
parent | 82b9c18dc0ee38b5c78c5d09b9cffc79d98613c5 (diff) | |
download | blackbird-op-linux-15e0d9e37c7fe9711b60f47221c394d45553ad8c.tar.gz blackbird-op-linux-15e0d9e37c7fe9711b60f47221c394d45553ad8c.zip |
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/mach-omap2/Kconfig')
-rw-r--r-- | arch/arm/mach-omap2/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig index 57b66d590c52..89bfb49389f2 100644 --- a/arch/arm/mach-omap2/Kconfig +++ b/arch/arm/mach-omap2/Kconfig @@ -36,6 +36,7 @@ config ARCH_OMAP3 select ARM_L1_CACHE_SHIFT_6 if !ARCH_OMAP4 select ARCH_HAS_OPP select PM_OPP if PM + select ARM_CPU_SUSPEND if PM config ARCH_OMAP4 bool "TI OMAP4" @@ -50,6 +51,7 @@ config ARCH_OMAP4 select ARCH_HAS_OPP select PM_OPP if PM select USB_ARCH_HAS_EHCI + select ARM_CPU_SUSPEND if PM comment "OMAP Core Type" depends on ARCH_OMAP2 |