mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
ARM: zynq: Fix refcount leak in zynq_early_slcr_init
of_find_compatible_node() returns a node pointer with refcount incremented,
we should use of_node_put() on error path.
Add missing of_node_put() to avoid refcount leak.
Fixes: 3329659df0
("ARM: zynq: Simplify SLCR initialization")
Signed-off-by: Qiheng Lin <linqiheng@huawei.com>
Link: https://lore.kernel.org/r/20221129140544.41293-1-linqiheng@huawei.com
Signed-off-by: Michal Simek <michal.simek@amd.com>
This commit is contained in:
parent
1b929c02af
commit
9eedb910a3
1 changed files with 1 additions and 0 deletions
|
@ -213,6 +213,7 @@ int __init zynq_early_slcr_init(void)
|
||||||
zynq_slcr_regmap = syscon_regmap_lookup_by_compatible("xlnx,zynq-slcr");
|
zynq_slcr_regmap = syscon_regmap_lookup_by_compatible("xlnx,zynq-slcr");
|
||||||
if (IS_ERR(zynq_slcr_regmap)) {
|
if (IS_ERR(zynq_slcr_regmap)) {
|
||||||
pr_err("%s: failed to find zynq-slcr\n", __func__);
|
pr_err("%s: failed to find zynq-slcr\n", __func__);
|
||||||
|
of_node_put(np);
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue