On 19/02/2020 11:21, Daniel Vetter wrote:
> It's right above the drm_dev_put().
> 
> Aside: This driver gets its devm_ stuff all wrong wrt drm_device and
> anything hanging off that. Not the only one unfortunately.
> 
> Signed-off-by: Daniel Vetter <daniel.vet...@intel.com>
> Cc: Neil Armstrong <narmstr...@baylibre.com>
> Cc: Kevin Hilman <khil...@baylibre.com>
> Cc: linux-amlo...@lists.infradead.org
> Cc: linux-arm-ker...@lists.infradead.org
> ---
>  drivers/gpu/drm/meson/meson_drv.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/meson/meson_drv.c 
> b/drivers/gpu/drm/meson/meson_drv.c
> index b5f5eb7b4bb9..ae94d14ab7bc 100644
> --- a/drivers/gpu/drm/meson/meson_drv.c
> +++ b/drivers/gpu/drm/meson/meson_drv.c
> @@ -284,7 +284,9 @@ static int meson_drv_bind_master(struct device *dev, bool 
> has_components)
>       /* Remove early framebuffers (ie. simplefb) */
>       meson_remove_framebuffers();
>  
> -     drm_mode_config_init(drm);
> +     ret = drm_mode_config_init(drm);
> +     if (ret)
> +             goto free_drm;
>       drm->mode_config.max_width = 3840;
>       drm->mode_config.max_height = 2160;
>       drm->mode_config.funcs = &meson_mode_config_funcs;
> @@ -379,7 +381,6 @@ static void meson_drv_unbind(struct device *dev)
>       drm_dev_unregister(drm);
>       drm_irq_uninstall(drm);
>       drm_kms_helper_poll_fini(drm);
> -     drm_mode_config_cleanup(drm);
>       drm_dev_put(drm);
>  }
>  
> 

Reviewed-by: Neil Armstrong <narmstr...@baylibre.com>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to