All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] mmc: dw_mmc: exynos: remove incorrect __exit_p()
@ 2015-01-24  0:33 Dmitry Torokhov
  2015-01-26 20:49 ` Doug Anderson
  2015-01-27 13:59 ` Ulf Hansson
  0 siblings, 2 replies; 3+ messages in thread
From: Dmitry Torokhov @ 2015-01-24  0:33 UTC (permalink / raw)
  To: Ulf Hansson
  Cc: Seungwon Jeon, Jaehoon Chung, Chris Ball, Kukjin Kim,
	Alim Akhtar, Abhilash Kesavan, Beomho Seo, linux-mmc,
	linux-samsung-soc, linux-kernel

dw_mci_pltfm_remove() is not (nor should it be) marked as __exit,
so we should not be using __exit_p() wrapper with it.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
 drivers/mmc/host/dw_mmc-exynos.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mmc/host/dw_mmc-exynos.c b/drivers/mmc/host/dw_mmc-exynos.c
index 12a5eaa..fe32948 100644
--- a/drivers/mmc/host/dw_mmc-exynos.c
+++ b/drivers/mmc/host/dw_mmc-exynos.c
@@ -422,7 +422,7 @@ static const struct dev_pm_ops dw_mci_exynos_pmops = {
 
 static struct platform_driver dw_mci_exynos_pltfm_driver = {
 	.probe		= dw_mci_exynos_probe,
-	.remove		= __exit_p(dw_mci_pltfm_remove),
+	.remove		= dw_mci_pltfm_remove,
 	.driver		= {
 		.name		= "dwmmc_exynos",
 		.of_match_table	= dw_mci_exynos_match,
-- 
2.2.0.rc0.207.ga3a616c


-- 
Dmitry

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] mmc: dw_mmc: exynos: remove incorrect __exit_p()
  2015-01-24  0:33 [PATCH] mmc: dw_mmc: exynos: remove incorrect __exit_p() Dmitry Torokhov
@ 2015-01-26 20:49 ` Doug Anderson
  2015-01-27 13:59 ` Ulf Hansson
  1 sibling, 0 replies; 3+ messages in thread
From: Doug Anderson @ 2015-01-26 20:49 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Ulf Hansson, Seungwon Jeon, Jaehoon Chung, Chris Ball,
	Kukjin Kim, Alim Akhtar, Abhilash Kesavan, Beomho Seo, linux-mmc,
	linux-samsung-soc, linux-kernel

Dmitry,

On Fri, Jan 23, 2015 at 4:33 PM, Dmitry Torokhov
<dmitry.torokhov@gmail.com> wrote:
> dw_mci_pltfm_remove() is not (nor should it be) marked as __exit,
> so we should not be using __exit_p() wrapper with it.
>
> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> ---
>  drivers/mmc/host/dw_mmc-exynos.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Nice catch, thanks!

Reviewed-by: Doug Anderson <dianders@chromium.org>
Tested-by: Doug Anderson <dianders@chromium.org>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] mmc: dw_mmc: exynos: remove incorrect __exit_p()
  2015-01-24  0:33 [PATCH] mmc: dw_mmc: exynos: remove incorrect __exit_p() Dmitry Torokhov
  2015-01-26 20:49 ` Doug Anderson
@ 2015-01-27 13:59 ` Ulf Hansson
  1 sibling, 0 replies; 3+ messages in thread
From: Ulf Hansson @ 2015-01-27 13:59 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: Seungwon Jeon, Jaehoon Chung, Chris Ball, Kukjin Kim,
	Alim Akhtar, Abhilash Kesavan, Beomho Seo, linux-mmc,
	linux-samsung-soc, linux-kernel

On 24 January 2015 at 01:33, Dmitry Torokhov <dmitry.torokhov@gmail.com> wrote:
> dw_mci_pltfm_remove() is not (nor should it be) marked as __exit,
> so we should not be using __exit_p() wrapper with it.
>
> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

Thanks! Applied for next.

Kind regards
Uffe


> ---
>  drivers/mmc/host/dw_mmc-exynos.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/mmc/host/dw_mmc-exynos.c b/drivers/mmc/host/dw_mmc-exynos.c
> index 12a5eaa..fe32948 100644
> --- a/drivers/mmc/host/dw_mmc-exynos.c
> +++ b/drivers/mmc/host/dw_mmc-exynos.c
> @@ -422,7 +422,7 @@ static const struct dev_pm_ops dw_mci_exynos_pmops = {
>
>  static struct platform_driver dw_mci_exynos_pltfm_driver = {
>         .probe          = dw_mci_exynos_probe,
> -       .remove         = __exit_p(dw_mci_pltfm_remove),
> +       .remove         = dw_mci_pltfm_remove,
>         .driver         = {
>                 .name           = "dwmmc_exynos",
>                 .of_match_table = dw_mci_exynos_match,
> --
> 2.2.0.rc0.207.ga3a616c
>
>
> --
> Dmitry

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-01-27 14:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-24  0:33 [PATCH] mmc: dw_mmc: exynos: remove incorrect __exit_p() Dmitry Torokhov
2015-01-26 20:49 ` Doug Anderson
2015-01-27 13:59 ` Ulf Hansson

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.