mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-11 23:27:42 +07:00
drm/msm: dsi host: add missing of_node_put()
Decrement device node refcount if of_get_child_by_name is successfully called. Signed-off-by: Archit Taneja <architt@codeaurora.org> Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
78b1d470d5
commit
14bb28b0f9
@ -1605,8 +1605,12 @@ int msm_dsi_host_register(struct mipi_dsi_host *host, bool check_defer)
|
|||||||
node = of_get_child_by_name(msm_host->pdev->dev.of_node,
|
node = of_get_child_by_name(msm_host->pdev->dev.of_node,
|
||||||
"panel");
|
"panel");
|
||||||
if (node) {
|
if (node) {
|
||||||
if (!of_drm_find_panel(node))
|
if (!of_drm_find_panel(node)) {
|
||||||
|
of_node_put(node);
|
||||||
return -EPROBE_DEFER;
|
return -EPROBE_DEFER;
|
||||||
|
}
|
||||||
|
|
||||||
|
of_node_put(node);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user