From: Yang Li Date: Thu, 25 Feb 2021 08:54:50 +0000 (+0800) Subject: ARM: OMAP2+: add missing call to of_node_put() X-Git-Tag: io_uring-5.13-2021-05-07~85^2~3^2~4 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=c3c83055bdf9730e6acf379800c63bcb40b41530;p=linux-2.6-block.git ARM: OMAP2+: add missing call to of_node_put() In one of the error paths of the for_each_child_of_node() loop, add missing call to of_node_put(). Fix the following coccicheck warning: ./arch/arm/mach-omap2/omap_hwmod.c:2132:1-23: WARNING: Function "for_each_child_of_node" should have of_node_put() before return around line 2140. Reported-by: Abaci Robot Signed-off-by: Yang Li Signed-off-by: Tony Lindgren --- diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c index 2310cd56e99b..007e91ed6aa4 100644 --- a/arch/arm/mach-omap2/omap_hwmod.c +++ b/arch/arm/mach-omap2/omap_hwmod.c @@ -2137,6 +2137,7 @@ static int of_dev_hwmod_lookup(struct device_node *np, if (res == 0) { *found = fc; *index = i; + of_node_put(np0); return 0; } }