Re: [PATCH v3] cpuidle: big.LITTLE: add of_node_put()

2018-12-10 Thread Frank Lee
On Mon, Dec 10, 2018 at 7:59 PM Daniel Lezcano wrote: > > > Hi Yangtao, > > > On 20/11/2018 17:14, Yangtao Li wrote: > > of_find_node_by_path() acquires a reference to the node > > returned by it and that reference needs to be dropped by its caller. > > bl_idle_init() doesn't do that, so fix it. >

Re: [PATCH v3] cpuidle: big.LITTLE: add of_node_put()

2018-12-10 Thread Daniel Lezcano
Hi Yangtao, On 20/11/2018 17:14, Yangtao Li wrote: > of_find_node_by_path() acquires a reference to the node > returned by it and that reference needs to be dropped by its caller. > bl_idle_init() doesn't do that, so fix it. > > Signed-off-by: Yangtao Li > --- > Changes in v3: > -update chang

Re: [PATCH v3] cpuidle: big.LITTLE: add of_node_put()

2018-12-10 Thread Rafael J. Wysocki
On Sunday, December 9, 2018 7:20:26 AM CET Frank Lee wrote: > On Wed, Nov 21, 2018 at 12:14 AM Yangtao Li wrote: > > > > of_find_node_by_path() acquires a reference to the node > > returned by it and that reference needs to be dropped by its caller. > > bl_idle_init() doesn't do that, so fix it. >

Re: [PATCH v3] cpuidle: big.LITTLE: add of_node_put()

2018-12-08 Thread Frank Lee
On Wed, Nov 21, 2018 at 12:14 AM Yangtao Li wrote: > > of_find_node_by_path() acquires a reference to the node > returned by it and that reference needs to be dropped by its caller. > bl_idle_init() doesn't do that, so fix it. > > Signed-off-by: Yangtao Li > --- > Changes in v3: > -update changel

[PATCH v3] cpuidle: big.LITTLE: add of_node_put()

2018-11-20 Thread Yangtao Li
of_find_node_by_path() acquires a reference to the node returned by it and that reference needs to be dropped by its caller. bl_idle_init() doesn't do that, so fix it. Signed-off-by: Yangtao Li --- Changes in v3: -update changelog --- drivers/cpuidle/cpuidle-big_little.c | 6 +- 1 file chang