Re: [PATCH v2] cpufreq: powernv: add of_node_put()

2018-12-11 Thread Rafael J. Wysocki
On Wednesday, November 21, 2018 5:02:04 AM CET Viresh Kumar wrote: > On 20-11-18, 11:05, Yangtao Li wrote: > > The of_find_node_by_path() returns a node pointer with refcount > > incremented,but there is the lack of use of the of_node_put() when > > done.Add the missing of_node_put() to release the

Re: [PATCH v2] cpufreq: powernv: add of_node_put()

2018-11-26 Thread Frank Lee
On Wed, Nov 21, 2018 at 12:02 PM Viresh Kumar wrote: > > On 20-11-18, 11:05, Yangtao Li wrote: > > The of_find_node_by_path() returns a node pointer with refcount > > incremented,but there is the lack of use of the of_node_put() when > > done.Add the missing of_node_put() to release the refcount.

Re: [PATCH v2] cpufreq: powernv: add of_node_put()

2018-11-20 Thread Viresh Kumar
On 20-11-18, 11:05, Yangtao Li wrote: > The of_find_node_by_path() returns a node pointer with refcount > incremented,but there is the lack of use of the of_node_put() when > done.Add the missing of_node_put() to release the refcount. > > Signed-off-by: Yangtao Li > --- > Changes in v2 > -update

[PATCH v2] cpufreq: powernv: add of_node_put()

2018-11-20 Thread Yangtao Li
The of_find_node_by_path() returns a node pointer with refcount incremented,but there is the lack of use of the of_node_put() when done.Add the missing of_node_put() to release the refcount. Signed-off-by: Yangtao Li --- Changes in v2 -update changelog --- drivers/cpufreq/powernv-cpufreq.c | 17