]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
power/reset: arm-versatile: Fix refcount leak in versatile_reboot_probe
authorMiaoqian Lin <linmq006@gmail.com>
Mon, 23 May 2022 14:10:09 +0000 (18:10 +0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 29 Jul 2022 15:05:45 +0000 (17:05 +0200)
commitb4d224eec96a18fa8959512cd9e5b6a50bd16a41
tree8e27b28e9ed1dc1d2d1ada313a53c0694c90a1ab
parent5aff12fa09504c6ea88fc17749a39cda2c4d6ef7
power/reset: arm-versatile: Fix refcount leak in versatile_reboot_probe

[ Upstream commit 80192eff64eee9b3bc0594a47381937b94b9d65a ]

of_find_matching_node_and_match() 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: 0e545f57b708 ("power: reset: driver for the Versatile syscon reboot")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/power/reset/arm-versatile-reboot.c