diff options
author | Olof Johansson <olof@lixom.net> | 2014-10-14 23:31:13 -0700 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2014-10-14 23:31:13 -0700 |
commit | e17fd8e58a1eb39e23f29da065ccc1498f022ed7 (patch) | |
tree | 4ab0b1ad5f6b32d16cab7e0fd0005035ee9d1fbe /arch/arm/mach-exynos/exynos.c | |
parent | 6d81dc87c0fac76efabcde6884fcbe4cec874a83 (diff) | |
parent | f6f1ae82bd288bceed5a93594a8a081845f11b41 (diff) | |
download | talos-obmc-linux-e17fd8e58a1eb39e23f29da065ccc1498f022ed7.tar.gz talos-obmc-linux-e17fd8e58a1eb39e23f29da065ccc1498f022ed7.zip |
Merge tag 'samsung-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung into fixes
Merge "Samsung fixes for v3.18" from Kukjin Kim:
- fix ifdef around cpu_*_do_[suspend, resume] ops to check
CONFIG_ARM_CPU_SUSPEND and not CONFIG_PM_SLEEP
- fix exynos_defconfig build with PM_SLEEP=n and ARM_EXYNOS_CPUIDLE=n
- fix enabling Samsung PM debug functionality due to recently merged
patches and previous merge conflicts
- fix pull-up setting in sd4_width8 pin group for exynos4x12
* tag 'samsung-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung:
ARM: mm: Fix ifdef around cpu_*_do_[suspend, resume] ops
ARM: EXYNOS: Fix build with PM_SLEEP=n and ARM_EXYNOS_CPUIDLE=n
ARM: SAMSUNG: Restore Samsung PM Debug functionality
ARM: dts: Fix pull setting in sd4_width8 pin group for exynos4x12
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-exynos/exynos.c')
-rw-r--r-- | arch/arm/mach-exynos/exynos.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos/exynos.c b/arch/arm/mach-exynos/exynos.c index b89e5f35db84..6b283eb3202e 100644 --- a/arch/arm/mach-exynos/exynos.c +++ b/arch/arm/mach-exynos/exynos.c @@ -161,7 +161,9 @@ static void exynos_restart(enum reboot_mode mode, const char *cmd) static struct platform_device exynos_cpuidle = { .name = "exynos_cpuidle", +#ifdef CONFIG_ARM_EXYNOS_CPUIDLE .dev.platform_data = exynos_enter_aftr, +#endif .id = -1, }; |