summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTushar Behera <tushar.behera@linaro.org>2012-06-19 14:22:09 +0530
committerTushar Behera <tushar.behera@linaro.org>2012-07-20 14:29:04 +0530
commit7480ea215d989a8114404f3f4a860d9a576cfce9 (patch)
tree85f554cb1c25dfe077945a4aeedf0f9edd23c8a8
parent5f036b64b090440820fb7c55e62fd12565f86e1f (diff)
ARM: EXYNOS: Keep power domains ON in DT modetracking-samslt-dt-ll-20120727.0tracking-samslt-dt-ll-20120723.0
Power domain adaptation is not yet complete with DT. Signed-off-by: Tushar Behera <tushar.behera@linaro.org>
-rw-r--r--arch/arm/mach-exynos/pm_domains.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/pm_domains.c b/arch/arm/mach-exynos/pm_domains.c
index e9fafcf163de..6fdd7246f035 100644
--- a/arch/arm/mach-exynos/pm_domains.c
+++ b/arch/arm/mach-exynos/pm_domains.c
@@ -195,6 +195,7 @@ arch_initcall(exynos4_pm_init_power_domain);
int __init exynos_pm_late_initcall(void)
{
- pm_genpd_poweroff_unused();
+ if (!of_have_populated_dt())
+ pm_genpd_poweroff_unused();
return 0;
}