Parent node must be put after using it to balance its usage count. This was missing in cpufreq-cpu0 driver. Fix it.
Signed-off-by: Viresh Kumar viresh.kumar@linaro.org --- drivers/cpufreq/cpufreq-cpu0.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/drivers/cpufreq/cpufreq-cpu0.c b/drivers/cpufreq/cpufreq-cpu0.c index 31282fc..3ab8294 100644 --- a/drivers/cpufreq/cpufreq-cpu0.c +++ b/drivers/cpufreq/cpufreq-cpu0.c @@ -257,6 +257,7 @@ static int cpu0_cpufreq_probe(struct platform_device *pdev) }
of_node_put(np); + of_node_put(parent); return 0;
out_free_table:
On Mon, Apr 15, 2013 at 12:39:37PM +0530, Viresh Kumar wrote:
Parent node must be put after using it to balance its usage count. This was missing in cpufreq-cpu0 driver. Fix it.
Signed-off-by: Viresh Kumar viresh.kumar@linaro.org
Acked-by: Shawn Guo shawn.guo@linaro.org
drivers/cpufreq/cpufreq-cpu0.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/drivers/cpufreq/cpufreq-cpu0.c b/drivers/cpufreq/cpufreq-cpu0.c index 31282fc..3ab8294 100644 --- a/drivers/cpufreq/cpufreq-cpu0.c +++ b/drivers/cpufreq/cpufreq-cpu0.c @@ -257,6 +257,7 @@ static int cpu0_cpufreq_probe(struct platform_device *pdev) } of_node_put(np);
- of_node_put(parent); return 0;
out_free_table: -- 1.7.12.rc2.18.g61b472e
On Tuesday, April 16, 2013 04:40:15 PM Shawn Guo wrote:
On Mon, Apr 15, 2013 at 12:39:37PM +0530, Viresh Kumar wrote:
Parent node must be put after using it to balance its usage count. This was missing in cpufreq-cpu0 driver. Fix it.
Signed-off-by: Viresh Kumar viresh.kumar@linaro.org
Acked-by: Shawn Guo shawn.guo@linaro.org
Applied.
Thanks, Rafael
drivers/cpufreq/cpufreq-cpu0.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/drivers/cpufreq/cpufreq-cpu0.c b/drivers/cpufreq/cpufreq-cpu0.c index 31282fc..3ab8294 100644 --- a/drivers/cpufreq/cpufreq-cpu0.c +++ b/drivers/cpufreq/cpufreq-cpu0.c @@ -257,6 +257,7 @@ static int cpu0_cpufreq_probe(struct platform_device *pdev) } of_node_put(np);
- of_node_put(parent); return 0;
out_free_table:
-- To unsubscribe from this list: send the line "unsubscribe cpufreq" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
linaro-kernel@lists.linaro.org