mirror of https://github.com/torvalds/linux.git
pmdomain: imx: Fix reference count leak in imx_gpc_remove
of_get_child_by_name() returns a node pointer with refcount incremented, we
should use of_node_put() on it when not needed anymore. Add the missing
of_node_put() to avoid refcount leak.
Fixes: 721cabf6c6 ("soc: imx: move PGC handling to a new GPC driver")
Cc: stable@vger.kernel.org
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
fccac54b0d
commit
bbde14682e
|
|
@ -536,6 +536,8 @@ static void imx_gpc_remove(struct platform_device *pdev)
|
|||
return;
|
||||
}
|
||||
}
|
||||
|
||||
of_node_put(pgc_node);
|
||||
}
|
||||
|
||||
static struct platform_driver imx_gpc_driver = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue