> In imx_pd_bind, the duplicated memory for imxpd->edid via kmemdup should
> be released in drm_of_find_panel_or_bridge or imx_pd_register fail.

Please improve this change description.


> +++ b/drivers/gpu/drm/imx/parallel-display.c
> @@ -227,14 +227,18 @@ static int imx_pd_bind(struct device *dev, struct 
> device *master, void *data)
>
>       /* port@1 is the output port */
>       ret = drm_of_find_panel_or_bridge(np, 1, 0, &imxpd->panel, 
> &imxpd->bridge);
> -     if (ret && ret != -ENODEV)
> +     if (ret && ret != -ENODEV) {
> +             kfree(imxpd->edid);
>               return ret;
> +     }
>
>       imxpd->dev = dev;

Please use a jump target here instead of adding duplicate source code
for the completion of exception handling.

        if (ret && ret != -ENODEV)
-               return ret;
+               goto free_edid;

…

+free_edid:
+       kfree(imxpd->edid);
+       return ret;


Regards,
Markus

Reply via email to