Re:Re: [PATCH] drm/imx/dcss: Add missing of_node_put() in fail path

2022-07-14 Thread Liang He
At 2022-07-14 15:37:41, "Laurentiu Palcu" wrote: >Hi Liang, > >Thanks for the patch. > >The patch is ok but, since you're at it, maybe add of_node_put() in the >dcss_dev_destroy() too? > Thanks, laurentiu, I miss it and I will add it soon. >Thanks, >laurentiu > >On Thu, Jul 07, 2022 at 10:3

Re: [PATCH] drm/imx/dcss: Add missing of_node_put() in fail path

2022-07-14 Thread Laurentiu Palcu
Hi Liang, Thanks for the patch. The patch is ok but, since you're at it, maybe add of_node_put() in the dcss_dev_destroy() too? Thanks, laurentiu On Thu, Jul 07, 2022 at 10:32:14AM +0800, Liang He wrote: > In dcss_dev_create(), we should call of_node_put() in fail path for > of_graph_get_port_b

[PATCH] drm/imx/dcss: Add missing of_node_put() in fail path

2022-07-06 Thread Liang He
In dcss_dev_create(), we should call of_node_put() in fail path for of_graph_get_port_by_id() which will increase the refcount. Fixes: 9021c317b770 ("drm/imx: Add initial support for DCSS on iMX8MQ") Signed-off-by: Liang He --- drivers/gpu/drm/imx/dcss/dcss-dev.c | 1 + 1 file changed, 1 inserti