]> git.baikalelectronics.ru Git - kernel.git/commitdiff
remoteproc: qcom_q6v5_pas: Fix missing of_node_put() in adsp_alloc_memory_region()
authorYuan Can <yuancan@huawei.com>
Sat, 3 Dec 2022 07:06:39 +0000 (07:06 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Jan 2023 10:41:31 +0000 (11:41 +0100)
[ Upstream commit 38e7d9c19276832ebb0277f415b9214bf7baeb37 ]

The pointer node is returned by of_parse_phandle() with refcount
incremented. We should use of_node_put() on it when done.

Fixes: 022a96144a3e ("remoteproc: Introduce Qualcomm ADSP PIL")
Signed-off-by: Yuan Can <yuancan@huawei.com>
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20221203070639.15128-1-yuancan@huawei.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/remoteproc/qcom_q6v5_pas.c

index db4b3c4bacd77f8630b706112959e7834966e4b5..d48f4b5c8df7b4627f7d5046f225169df441b4e1 100644 (file)
@@ -230,6 +230,7 @@ static int adsp_alloc_memory_region(struct qcom_adsp *adsp)
        }
 
        ret = of_address_to_resource(node, 0, &r);
+       of_node_put(node);
        if (ret)
                return ret;