Re: [PATCH] clk: ti: dra7-atl-clock: Fix of_node reference counting

2016-04-15 Thread Stephen Boyd
On 03/11, Peter Ujfalusi wrote: > of_find_node_by_name() will call of_node_put() on the node so we need to > get it first to avoid warnings. > The cfg_node needs to be put after we have finished processing the > properties. > > Signed-off-by: Peter Ujfalusi > --- Applied to clk-next -- Qualcom

Re: [PATCH] clk: ti: dra7-atl-clock: Fix of_node reference counting

2016-03-11 Thread Nishanth Menon
On 03/11/2016 08:13 AM, Peter Ujfalusi wrote: > of_find_node_by_name() will call of_node_put() on the node so we need to > get it first to avoid warnings. > The cfg_node needs to be put after we have finished processing the > properties. > > Signed-off-by: Peter Ujfalusi > --- > drivers/clk/ti/c

[PATCH] clk: ti: dra7-atl-clock: Fix of_node reference counting

2016-03-11 Thread Peter Ujfalusi
of_find_node_by_name() will call of_node_put() on the node so we need to get it first to avoid warnings. The cfg_node needs to be put after we have finished processing the properties. Signed-off-by: Peter Ujfalusi --- drivers/clk/ti/clk-dra7-atl.c | 2 ++ 1 file changed, 2 insertions(+) diff --