[PATCH 04/14] cpufreq: exynos4x12: properly put of node
Eduardo Valentin
edubezval at gmail.com
Mon Feb 2 12:58:07 PST 2015
Call of_node_put when necessary during init.
Cc: "Rafael J. Wysocki" <rjw at rjwysocki.net>
Cc: Viresh Kumar <viresh.kumar at linaro.org>
Cc: Kukjin Kim <kgene at kernel.org>
Cc: linux-pm at vger.kernel.org
Cc: linux-arm-kernel at lists.infradead.org
Cc: linux-samsung-soc at vger.kernel.org
Cc: linux-kernel at vger.kernel.org
Signed-off-by: Eduardo Valentin <edubezval at gmail.com>
---
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
More information about the linux-arm-kernel
mailing list