]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ARM: zynq: Fix refcount leak in zynq_early_slcr_init
authorQiheng Lin <linqiheng@huawei.com>
Tue, 29 Nov 2022 14:05:44 +0000 (22:05 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 11 Mar 2023 15:26:34 +0000 (16:26 +0100)
commitf00bc6727adf840eb208700ea27cda4f3742629d
tree2ec932d5574c5f574c33b30c473ab17bb68dc339
parent5f9aedabce3404dd8bb769822fc11317c55fbdc1
ARM: zynq: Fix refcount leak in zynq_early_slcr_init

[ Upstream commit 9eedb910a3be0005b88c696a8552c0d4c9937cd4 ]

of_find_compatible_node() returns a node pointer with refcount incremented,
we should use of_node_put() on error path.
Add missing of_node_put() to avoid refcount leak.

Fixes: 3329659df030 ("ARM: zynq: Simplify SLCR initialization")
Signed-off-by: Qiheng Lin <linqiheng@huawei.com>
Link: https://lore.kernel.org/r/20221129140544.41293-1-linqiheng@huawei.com
Signed-off-by: Michal Simek <michal.simek@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/arm/mach-zynq/slcr.c