aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/omap_hwmod.c
diff options
context:
space:
mode:
authorWan Jiabing <wanjiabing@vivo.com>2021-10-14 04:57:19 -0400
committerTony Lindgren <tony@atomide.com>2021-12-17 14:08:10 +0200
commit80c469a0a03763f814715f3d12b6f3964c7423e8 (patch)
tree267247c9c1fb9a57bcf1041e8e162b121fb32759 /arch/arm/mach-omap2/omap_hwmod.c
parentLinux 5.16-rc1 (diff)
downloadlinux-dev-80c469a0a03763f814715f3d12b6f3964c7423e8.tar.xz
linux-dev-80c469a0a03763f814715f3d12b6f3964c7423e8.zip
ARM: OMAP2+: hwmod: Add of_node_put() before break
Fix following coccicheck warning: ./arch/arm/mach-omap2/omap_hwmod.c:753:1-23: WARNING: Function for_each_matching_node should have of_node_put() before break Early exits from for_each_matching_node should decrement the node reference counter. Signed-off-by: Wan Jiabing <wanjiabing@vivo.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/omap_hwmod.c')
-rw-r--r--arch/arm/mach-omap2/omap_hwmod.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c
index ccb0e3732c0d..31d1a21f6041 100644
--- a/arch/arm/mach-omap2/omap_hwmod.c
+++ b/arch/arm/mach-omap2/omap_hwmod.c
@@ -752,8 +752,10 @@ static int __init _init_clkctrl_providers(void)
for_each_matching_node(np, ti_clkctrl_match_table) {
ret = _setup_clkctrl_provider(np);
- if (ret)
+ if (ret) {
+ of_node_put(np);
break;
+ }
}
return ret;