2015-02-02 21:01:56

by Eduardo Valentin

[permalink] [raw]
Subject: [PATCH 04/14] cpufreq: exynos4x12: properly put of node

Call of_node_put when necessary during init.

Cc: "Rafael J. Wysocki" <[email protected]>
Cc: Viresh Kumar <[email protected]>
Cc: Kukjin Kim <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Eduardo Valentin <[email protected]>
---
drivers/cpufreq/exynos4x12-cpufreq.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/drivers/cpufreq/exynos4x12-cpufreq.c b/drivers/cpufreq/exynos4x12-cpufreq.c
index 9e78a85..3d067f2 100644
--- a/drivers/cpufreq/exynos4x12-cpufreq.c
+++ b/drivers/cpufreq/exynos4x12-cpufreq.c
@@ -221,6 +221,7 @@ int exynos4x12_cpufreq_init(struct exynos_dvfs_info *info)
info->set_freq = exynos4x12_set_frequency;

cpufreq = info;
+ of_node_put(np);

return 0;

@@ -231,6 +232,8 @@ err_mout_mpll:
err_moutcore:
clk_put(cpu_clk);

+ of_node_put(np);
pr_debug("%s: failed initialization\n", __func__);
+
return -EINVAL;
}
--
2.1.3