Re: [PATCH] clk: imx6ul: fix missing of_node_put()

2018-07-25 Thread Stephen Boyd
Quoting Nicholas Mc Guire (2018-07-13 04:13:20) > of_find_compatible_node() is returning a device node with refcount > incremented and must be explicitly decremented after the last use > which is right after the us in of_iomap() here. > > Signed-off-by: Nicholas Mc Guire > Fixes: commit 787b4271a

Re: [PATCH] clk: imx6ul: fix missing of_node_put()

2018-07-13 Thread Nicholas Mc Guire
On Fri, Jul 13, 2018 at 09:27:30AM -0700, Stephen Boyd wrote: > Quoting Nicholas Mc Guire (2018-07-13 04:13:20) > > of_find_compatible_node() is returning a device node with refcount > > incremented and must be explicitly decremented after the last use > > which is right after the us in of_iomap()

Re: [PATCH] clk: imx6ul: fix missing of_node_put()

2018-07-13 Thread Stephen Boyd
Quoting Nicholas Mc Guire (2018-07-13 04:13:20) > of_find_compatible_node() is returning a device node with refcount > incremented and must be explicitly decremented after the last use > which is right after the us in of_iomap() here. > > Signed-off-by: Nicholas Mc Guire > Fixes: commit 787b4271a

[PATCH] clk: imx6ul: fix missing of_node_put()

2018-07-13 Thread Nicholas Mc Guire
of_find_compatible_node() is returning a device node with refcount incremented and must be explicitly decremented after the last use which is right after the us in of_iomap() here. Signed-off-by: Nicholas Mc Guire Fixes: commit 787b4271a6a0 ("clk: imx: add imx6ul clk tree support") --- Problem l