pinctrl: freescale: imx: Add of_node_put() before return
commitbf4b87b0d06aa3860e5b23d7b144a42c657d58c2
authorNishka Dasgupta <nishkadg.linux@gmail.com>
Thu, 8 Aug 2019 07:47:20 +0000 (8 13:17 +0530)
committerLinus Walleij <linus.walleij@linaro.org>
Sat, 10 Aug 2019 08:29:19 +0000 (10 10:29 +0200)
treea66902e443a2f7a9827e14207f20e41101cd54ef
parent5a6bc29032700bcc1fb752dd58f73179a78d115b
pinctrl: freescale: imx: Add of_node_put() before return

Each iteration of for_each_child_of_node() puts the previous node;
however, in the case of a return from the middle of the loop, there is no
put, thus causing a memory leak. Hence put of_node_put() statements as
required before two mid-loop return statements.
Issue found with Coccinelle.

Signed-off-by: Nishka Dasgupta <nishkadg.linux@gmail.com>
Link: https://lore.kernel.org/r/20190808074720.15754-1-nishkadg.linux@gmail.com
Reviewed-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/freescale/pinctrl-imx.c