]> 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)
committerLee Jones <lee@kernel.org>
Tue, 19 Jul 2022 09:54:39 +0000 (10:54 +0100)
commitb7952837991f4aac6a260fc9516afad8333c5f13
tree80dfcf57a951de976c317b8b3d6b7096e532767f
parent9601ff5b5db1d3c7b043da1f1f44bc5fd75466a6
mfd: max77620: Fix refcount leak in max77620_initialise_fps

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
drivers/mfd/max77620.c