From: Inki Dae <inki.dae@samsung.com>
To: Sachin Kamat <sachin.kamat@samsung.com>
Cc: spk.linux@gmail.com, sw0312.kim@samsung.com,
dri-devel@lists.freedesktop.org
Subject: Re: [PATCH 1/1] drm/exynos: Fix de-registration ordering
Date: Wed, 18 Jun 2014 14:23:01 +0900 [thread overview]
Message-ID: <53A12235.2040407@samsung.com> (raw)
In-Reply-To: <1403005087-23801-1-git-send-email-sachin.kamat@samsung.com>
On 2014년 06월 17일 20:38, Sachin Kamat wrote:
> 'exynos_drm_pdev' was not getting unregistered if platform_driver_register()
> failed. Fix the ordering to allow this. This also fixes the below warning by
> moving the #endif macro. While at it also fix the ordering in the exit function
> so that de-registration happens in opposite order of registration.
> drivers/gpu/drm/exynos/exynos_drm_drv.c:768:1: warning: label ‘err_unregister_pd’ defined but not used [-Wunused-label]
Above line doesn't conform to UTF-8 so I just fixed it. :)
Applied.
Thanks,
Inki Dae
> Signed-off-by: Sachin Kamat <sachin.kamat@samsung.com>
> ---
> drivers/gpu/drm/exynos/exynos_drm_drv.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c b/drivers/gpu/drm/exynos/exynos_drm_drv.c
> index 5d225dd5..f72ca0c 100644
> --- a/drivers/gpu/drm/exynos/exynos_drm_drv.c
> +++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c
> @@ -765,24 +765,24 @@ static int exynos_drm_init(void)
>
> return 0;
>
> -err_unregister_pd:
> - platform_device_unregister(exynos_drm_pdev);
> -
> err_remove_vidi:
> #ifdef CONFIG_DRM_EXYNOS_VIDI
> exynos_drm_remove_vidi();
> +
> +err_unregister_pd:
> #endif
> + platform_device_unregister(exynos_drm_pdev);
>
> return ret;
> }
>
> static void exynos_drm_exit(void)
> {
> + platform_driver_unregister(&exynos_drm_platform_driver);
> #ifdef CONFIG_DRM_EXYNOS_VIDI
> exynos_drm_remove_vidi();
> #endif
> platform_device_unregister(exynos_drm_pdev);
> - platform_driver_unregister(&exynos_drm_platform_driver);
> }
>
> module_init(exynos_drm_init);
>
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2014-06-18 5:23 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-17 11:38 [PATCH 1/1] drm/exynos: Fix de-registration ordering Sachin Kamat
2014-06-18 5:23 ` Inki Dae [this message]
2014-06-18 5:27 ` Sachin Kamat
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=53A12235.2040407@samsung.com \
--to=inki.dae@samsung.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=sachin.kamat@samsung.com \
--cc=spk.linux@gmail.com \
--cc=sw0312.kim@samsung.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.