[PATCH] drm/sun4i: tcon: Fix refcount leak bug in sun4i_tcon_of_get_id_from_port()
Liang He
windhl at 126.com
Thu Jul 21 14:16:36 UTC 2022
We should call of_node_put() for the reference returned by
of_graph_get_remote_endpoint() when it is not used anymore.
Fixes: e8d5bbf7f4c4 ("drm/sun4i: tcon: get TCON ID and matching engine with remote endpoint ID")
Signed-off-by: Liang He <windhl at 126.com>
---
drivers/gpu/drm/sun4i/sun4i_tcon.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/sun4i/sun4i_tcon.c b/drivers/gpu/drm/sun4i/sun4i_tcon.c
index 523a6d787921..744379baa9da 100644
--- a/drivers/gpu/drm/sun4i/sun4i_tcon.c
+++ b/drivers/gpu/drm/sun4i/sun4i_tcon.c
@@ -972,6 +972,7 @@ static int sun4i_tcon_of_get_id_from_port(struct device_node *port)
continue;
ret = of_property_read_u32(remote, "reg", ®);
+ of_node_put(remote);
if (ret)
continue;
--
2.25.1
More information about the dri-devel
mailing list