[PATCH] drm/stm: Replace drm_dev_unref with drm_dev_put

Benjamin Gaignard benjamin.gaignard at linaro.org
Fri Jul 13 08:14:11 UTC 2018


2018-07-13 10:06 GMT+02:00 Thomas Zimmermann <tzimmermann at suse.de>:
> This patch unifies the naming of DRM functions for reference counting
> of struct drm_device. The resulting code is more aligned with the rest
> of the Linux kernel interfaces.
>
> Signed-off-by: Thomas Zimmermann <tzimmermann at suse.de>
> Acked-by: Philippe Cornu <philippe.cornu at st.com>

Applied on drm-misc-next.
Thanks,
Benjamin

> ---
>  drivers/gpu/drm/stm/drv.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/stm/drv.c b/drivers/gpu/drm/stm/drv.c
> index 8698e08313e1..f2021b23554d 100644
> --- a/drivers/gpu/drm/stm/drv.c
> +++ b/drivers/gpu/drm/stm/drv.c
> @@ -148,16 +148,16 @@ static int stm_drm_platform_probe(struct platform_device *pdev)
>
>         ret = drv_load(ddev);
>         if (ret)
> -               goto err_unref;
> +               goto err_put;
>
>         ret = drm_dev_register(ddev, 0);
>         if (ret)
> -               goto err_unref;
> +               goto err_put;
>
>         return 0;
>
> -err_unref:
> -       drm_dev_unref(ddev);
> +err_put:
> +       drm_dev_put(ddev);
>
>         return ret;
>  }
> @@ -170,7 +170,7 @@ static int stm_drm_platform_remove(struct platform_device *pdev)
>
>         drm_dev_unregister(ddev);
>         drv_unload(ddev);
> -       drm_dev_unref(ddev);
> +       drm_dev_put(ddev);
>
>         return 0;
>  }
> --
> 2.18.0
>


More information about the dri-devel mailing list