]> git.baikalelectronics.ru Git - kernel.git/commit
mfd: max77620: Fix refcount leak in max77620_initialise_fps
authorMiaoqian Lin <linmq006@gmail.com>
Wed, 1 Jun 2022 04:32:22 +0000 (08:32 +0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Aug 2022 09:18:04 +0000 (11:18 +0200)
commitdc7d7b88b92459b8f4550af016b635a641d2b189
tree4e844b70c954dfaaf4499e0f3596c516bcc2dea6
parentdf36bbee5ba522c5cdf0d04d681885197588c6d8
mfd: max77620: Fix refcount leak in max77620_initialise_fps

[ Upstream commit b7952837991f4aac6a260fc9516afad8333c5f13 ]

of_get_child_by_name() 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: 1bf61f587955 ("mfd: max77620: Add core driver for MAX77620/MAX20024")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Link: https://lore.kernel.org/r/20220601043222.64441-1-linmq006@gmail.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/mfd/max77620.c