projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
34d01df
)
remoteproc: qcom_q6v5_pas: Fix missing of_node_put() in adsp_alloc_memory_region()
author
Yuan Can
<yuancan@huawei.com>
Sat, 3 Dec 2022 07:06:39 +0000
(07:06 +0000)
committer
Bjorn Andersson
<andersson@kernel.org>
Wed, 7 Dec 2022 04:30:16 +0000
(22:30 -0600)
The pointer node is returned by of_parse_phandle() with refcount
incremented. We should use of_node_put() on it when done.
Fixes: b9e718e950c3 ("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
drivers/remoteproc/qcom_q6v5_pas.c
patch
|
blob
|
history
diff --git
a/drivers/remoteproc/qcom_q6v5_pas.c
b/drivers/remoteproc/qcom_q6v5_pas.c
index a14ff1142e761ba3ba44218fe7eab92ff1344a67..dc6f07ca83410fe26f5c8f4b28d4a89f58a334aa 100644
(file)
--- a/
drivers/remoteproc/qcom_q6v5_pas.c
+++ b/
drivers/remoteproc/qcom_q6v5_pas.c
@@
-449,6
+449,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;