]> git.baikalelectronics.ru Git - kernel.git/commit
memory: samsung: exynos5422-dmc: Fix refcount leak in of_get_dram_timings
authorMiaoqian Lin <linmq006@gmail.com>
Thu, 2 Jun 2022 04:17:21 +0000 (08:17 +0400)
committerKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Mon, 6 Jun 2022 09:18:20 +0000 (11:18 +0200)
commitdb158411e7630da756b04b69564cbd879050ee3c
tree4f31e2f1ddfcb768d2ba904b234c64d8a3ad06ca
parent6f74f799e8d3928ed61c66fe367531163b989008
memory: samsung: exynos5422-dmc: Fix refcount leak in of_get_dram_timings

of_parse_phandle() returns a node pointer with refcount
incremented, we should use of_node_put() on it when not need anymore.
This function doesn't call of_node_put() in some error paths.
To unify the structure, Add put_node label and goto it on errors.

Fixes: 6123dead87e9 ("memory: Add DMC driver for Exynos5422")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Reviewed-by: Lukasz Luba <lukasz.luba@arm.com>
Link: https://lore.kernel.org/r/20220602041721.64348-1-linmq006@gmail.com
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
drivers/memory/samsung/exynos5422-dmc.c