soc: rockchip: Fix refcount leak in rockchip_grf_init
authorMiaoqian Lin <linmq006@gmail.com>
Mon, 16 May 2022 07:20:10 +0000 (11:20 +0400)
committerHeiko Stuebner <heiko@sntech.de>
Tue, 17 May 2022 08:49:37 +0000 (10:49 +0200)
of_find_matching_node_and_match returns a node pointer with refcount
incremented, we should use of_node_put() on it when done.
Add missing of_node_put() to avoid refcount leak.

Fixes: 4c58063d4258 ("soc: rockchip: add driver handling grf setup")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Link: https://lore.kernel.org/r/20220516072013.19731-1-linmq006@gmail.com
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
drivers/soc/rockchip/grf.c

index 384461b..15a3970 100644 (file)
@@ -165,12 +165,14 @@ static int __init rockchip_grf_init(void)
                return -ENODEV;
        if (!match || !match->data) {
                pr_err("%s: missing grf data\n", __func__);
+               of_node_put(np);
                return -EINVAL;
        }
 
        grf_info = match->data;
 
        grf = syscon_node_to_regmap(np);
+       of_node_put(np);
        if (IS_ERR(grf)) {
                pr_err("%s: could not get grf syscon\n", __func__);
                return PTR_ERR(grf);