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-06-20 11:14:09 +0530
commit31d7ac56f5ccbc750dbdd21b3e66afc37b192849 (patch)
tree4d7698bee25d01afb3fc052f3f35ad9f5e252d91
parent110e11207b5a83e02daf03ed5025011516c8e4da (diff)
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;
}