Re: [PATCH] cpufreq: dt: call of_node_put() before error out

2016-06-26 Thread Viresh Kumar
On 27-06-16, 14:50, Masahiro Yamada wrote: > If of_match_node() fails, this init function bails out without > calling of_node_put(). > > I also changed of_node_put(of_root) to of_node_put(np); both of them > hold the same pointer, but it seems better to call of_node_put() > against the node return

[PATCH] cpufreq: dt: call of_node_put() before error out

2016-06-26 Thread Masahiro Yamada
If of_match_node() fails, this init function bails out without calling of_node_put(). I also changed of_node_put(of_root) to of_node_put(np); both of them hold the same pointer, but it seems better to call of_node_put() against the node returned by of_find_node_by_path(). Signed-off-by: Masahiro