ARM: OMAP2+: Fix refcount leak in omap3xxx_prm_late_init
authorMiaoqian Lin <linmq006@gmail.com>
Thu, 26 May 2022 07:37:24 +0000 (11:37 +0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 17 Aug 2022 12:23:09 +0000 (14:23 +0200)
commit1bf747824a8ca4008879fd7d2ce6b03d7b428858
treebc1cc88b9973c0d9750c04b4d5f1f9f370b5f949
parent230ad40a59c9a9ee8f3822b9a7bec09404102ebc
ARM: OMAP2+: Fix refcount leak in omap3xxx_prm_late_init

[ Upstream commit 942228fbf5d4901112178b93d41225be7c0dd9de ]

of_find_matching_node() returns a node pointer with refcount
incremented, we should use of_node_put() on it when not need anymore.
Add missing of_node_put() to avoid refcount leak.

Fixes: 1e037794f7f0 ("ARM: OMAP3+: PRM: register interrupt information from DT")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Message-Id: <20220526073724.21169-1-linmq006@gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/arm/mach-omap2/prm3xxx.c