diff options
author | Stephen Warren <swarren@nvidia.com> | 2012-09-05 19:58:27 +0400 |
---|---|---|
committer | Stephen Warren <swarren@nvidia.com> | 2012-09-06 22:27:27 +0400 |
commit | 4b1082ca8cd3bec99fc0ce020a8ba1fa3aa8e22a (patch) | |
tree | 2b0df3e2e2f7c0e498f4731ffab7adaf56505415 /arch/arm/Kconfig | |
parent | b48d6aab37403fb34fe18dd90791cb60f3265f13 (diff) | |
download | linux-4b1082ca8cd3bec99fc0ce020a8ba1fa3aa8e22a.tar.xz |
ARM: enable SUSPEND/ARCH_SUSPEND_POSSIBLE for ARCH_TEGRA
Even though system suspend/resume hasn't been validated on Tegra yet,
this Kconfig option needs to be enabled so that system shutdown is
reliable on an SMP system. Without it, I2C interrupts may be routed
to CPU0, whereas shutdown code may be running on CPU1, causing I2C
timeouts, preventing communication with the external PMIC.
This reverts 3d5e8af "ARM: disable SUSPEND/ARCH_SUSPEND_POSSIBLE for
ARCH_TEGRA".
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index c5f9ae5dbd1a..f134dd88fe88 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -2313,7 +2313,7 @@ menu "Power management options" source "kernel/power/Kconfig" config ARCH_SUSPEND_POSSIBLE - depends on !ARCH_S5PC100 && !ARCH_TEGRA + depends on !ARCH_S5PC100 depends on CPU_ARM920T || CPU_ARM926T || CPU_SA1100 || \ CPU_V6 || CPU_V6K || CPU_V7 || CPU_XSC3 || CPU_XSCALE || CPU_MOHAWK def_bool y |