Browse Source

cpufreq: ti-cpufreq: add missing of_node_put()

call of_node_put to release the refcount of np.

Signed-off-by: Zumeng Chen <zumeng.chen@gmail.com>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Zumeng Chen 7 years ago
parent
commit
248aefdcc3
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/cpufreq/ti-cpufreq.c

+ 1 - 0
drivers/cpufreq/ti-cpufreq.c

@@ -205,6 +205,7 @@ static int ti_cpufreq_init(void)
 
 	np = of_find_node_by_path("/");
 	match = of_match_node(ti_cpufreq_of_match, np);
+	of_node_put(np);
 	if (!match)
 		return -ENODEV;