aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Kozlowski <[email protected]>2015-03-18 02:19:24 +0900
committerKukjin Kim <[email protected]>2015-03-18 02:19:24 +0900
commit70e9d7b59f5d56cb83ace31380ac75531fbbb591 (patch)
tree6a9693ca6cbbfc6ca405ae12ad7a7f2f4d478f8a
parent528eae6c14a45f40809733862675f6cf03998d17 (diff)
ARM: EXYNOS: Use platform device name as power domain name
The power domain nodes in DTS may be very generic (e.g. "power-domain" for Exynos 5420) making it very hard to debug: $ cat /sys/kernel/debug/pm_genpd/pm_genpd_summary domain status slaves power-domain on Use platform device name instead so the names will be a little more user friendly: domain status slaves 100440e0.power-domain on Signed-off-by: Krzysztof Kozlowski <[email protected]> Suggested-by: Javier Martinez Canillas <[email protected]> Suggested-by: Sergei Shtylyov <[email protected]> Reviewed-by: Javier Martinez Canillas <[email protected]> Reviewed-by: Chanwoo Choi <[email protected]> Reviewed-by: Kevin Hilman <[email protected]> Signed-off-by: Kukjin Kim <[email protected]>
-rw-r--r--arch/arm/mach-exynos/pm_domains.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/pm_domains.c b/arch/arm/mach-exynos/pm_domains.c
index ccdcacbd1cd9..a80d15d97df9 100644
--- a/arch/arm/mach-exynos/pm_domains.c
+++ b/arch/arm/mach-exynos/pm_domains.c
@@ -135,7 +135,7 @@ static __init int exynos4_pm_init_power_domain(void)
return -ENOMEM;
}
- pd->pd.name = kstrdup(np->name, GFP_KERNEL);
+ pd->pd.name = kstrdup(dev_name(dev), GFP_KERNEL);
pd->name = pd->pd.name;
pd->base = of_iomap(np, 0);
pd->pd.power_off = exynos_pd_power_off;