All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ASoC: Convert imx directory to module_platform_driver
@ 2011-11-24  7:03 Axel Lin
  2011-11-28  9:29 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Axel Lin @ 2011-11-24  7:03 UTC (permalink / raw)
  To: alsa-devel; +Cc: Sascha Hauer, Brown, Liam Girdwood, Mark

Factor out some boilerplate code.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
---
 sound/soc/imx/imx-pcm-dma-mx2.c |   12 +-----------
 sound/soc/imx/imx-pcm-fiq.c     |   12 +-----------
 sound/soc/imx/imx-ssi.c         |   13 +------------
 3 files changed, 3 insertions(+), 34 deletions(-)

diff --git a/sound/soc/imx/imx-pcm-dma-mx2.c b/sound/soc/imx/imx-pcm-dma-mx2.c
index 7d28de9..aecdba9 100644
--- a/sound/soc/imx/imx-pcm-dma-mx2.c
+++ b/sound/soc/imx/imx-pcm-dma-mx2.c
@@ -326,16 +326,6 @@ static struct platform_driver imx_pcm_driver = {
 	.remove = __devexit_p(imx_soc_platform_remove),
 };
 
-static int __init snd_imx_pcm_init(void)
-{
-	return platform_driver_register(&imx_pcm_driver);
-}
-module_init(snd_imx_pcm_init);
-
-static void __exit snd_imx_pcm_exit(void)
-{
-	platform_driver_unregister(&imx_pcm_driver);
-}
-module_exit(snd_imx_pcm_exit);
+module_platform_driver(imx_pcm_driver);
 MODULE_LICENSE("GPL");
 MODULE_ALIAS("platform:imx-pcm-audio");
diff --git a/sound/soc/imx/imx-pcm-fiq.c b/sound/soc/imx/imx-pcm-fiq.c
index 8df0fae2..d7ea0b3 100644
--- a/sound/soc/imx/imx-pcm-fiq.c
+++ b/sound/soc/imx/imx-pcm-fiq.c
@@ -331,14 +331,4 @@ static struct platform_driver imx_pcm_driver = {
 	.remove = __devexit_p(imx_soc_platform_remove),
 };
 
-static int __init snd_imx_pcm_init(void)
-{
-	return platform_driver_register(&imx_pcm_driver);
-}
-module_init(snd_imx_pcm_init);
-
-static void __exit snd_imx_pcm_exit(void)
-{
-	platform_driver_unregister(&imx_pcm_driver);
-}
-module_exit(snd_imx_pcm_exit);
+module_platform_driver(imx_pcm_driver);
diff --git a/sound/soc/imx/imx-ssi.c b/sound/soc/imx/imx-ssi.c
index 4c05e2b..d4b6367 100644
--- a/sound/soc/imx/imx-ssi.c
+++ b/sound/soc/imx/imx-ssi.c
@@ -757,18 +757,7 @@ static struct platform_driver imx_ssi_driver = {
 	},
 };
 
-static int __init imx_ssi_init(void)
-{
-	return platform_driver_register(&imx_ssi_driver);
-}
-
-static void __exit imx_ssi_exit(void)
-{
-	platform_driver_unregister(&imx_ssi_driver);
-}
-
-module_init(imx_ssi_init);
-module_exit(imx_ssi_exit);
+module_platform_driver(imx_ssi_driver);
 
 /* Module information */
 MODULE_AUTHOR("Sascha Hauer, <s.hauer@pengutronix.de>");
-- 
1.7.5.4

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

* Re: [PATCH] ASoC: Convert imx directory to module_platform_driver
  2011-11-24  7:03 [PATCH] ASoC: Convert imx directory to module_platform_driver Axel Lin
@ 2011-11-28  9:29 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2011-11-28  9:29 UTC (permalink / raw)
  To: Axel Lin; +Cc: alsa-devel, Mark Brown, Liam Girdwood

On Thu, Nov 24, 2011 at 03:03:50PM +0800, Axel Lin wrote:
> Factor out some boilerplate code.
> 
> Signed-off-by: Axel Lin <axel.lin@gmail.com>

Acked-by: Sascha Hauer <s.hauer@pengutronix.de>

> ---
>  sound/soc/imx/imx-pcm-dma-mx2.c |   12 +-----------
>  sound/soc/imx/imx-pcm-fiq.c     |   12 +-----------
>  sound/soc/imx/imx-ssi.c         |   13 +------------
>  3 files changed, 3 insertions(+), 34 deletions(-)
> 
> diff --git a/sound/soc/imx/imx-pcm-dma-mx2.c b/sound/soc/imx/imx-pcm-dma-mx2.c
> index 7d28de9..aecdba9 100644
> --- a/sound/soc/imx/imx-pcm-dma-mx2.c
> +++ b/sound/soc/imx/imx-pcm-dma-mx2.c
> @@ -326,16 +326,6 @@ static struct platform_driver imx_pcm_driver = {
>  	.remove = __devexit_p(imx_soc_platform_remove),
>  };
>  
> -static int __init snd_imx_pcm_init(void)
> -{
> -	return platform_driver_register(&imx_pcm_driver);
> -}
> -module_init(snd_imx_pcm_init);
> -
> -static void __exit snd_imx_pcm_exit(void)
> -{
> -	platform_driver_unregister(&imx_pcm_driver);
> -}
> -module_exit(snd_imx_pcm_exit);
> +module_platform_driver(imx_pcm_driver);
>  MODULE_LICENSE("GPL");
>  MODULE_ALIAS("platform:imx-pcm-audio");
> diff --git a/sound/soc/imx/imx-pcm-fiq.c b/sound/soc/imx/imx-pcm-fiq.c
> index 8df0fae2..d7ea0b3 100644
> --- a/sound/soc/imx/imx-pcm-fiq.c
> +++ b/sound/soc/imx/imx-pcm-fiq.c
> @@ -331,14 +331,4 @@ static struct platform_driver imx_pcm_driver = {
>  	.remove = __devexit_p(imx_soc_platform_remove),
>  };
>  
> -static int __init snd_imx_pcm_init(void)
> -{
> -	return platform_driver_register(&imx_pcm_driver);
> -}
> -module_init(snd_imx_pcm_init);
> -
> -static void __exit snd_imx_pcm_exit(void)
> -{
> -	platform_driver_unregister(&imx_pcm_driver);
> -}
> -module_exit(snd_imx_pcm_exit);
> +module_platform_driver(imx_pcm_driver);
> diff --git a/sound/soc/imx/imx-ssi.c b/sound/soc/imx/imx-ssi.c
> index 4c05e2b..d4b6367 100644
> --- a/sound/soc/imx/imx-ssi.c
> +++ b/sound/soc/imx/imx-ssi.c
> @@ -757,18 +757,7 @@ static struct platform_driver imx_ssi_driver = {
>  	},
>  };
>  
> -static int __init imx_ssi_init(void)
> -{
> -	return platform_driver_register(&imx_ssi_driver);
> -}
> -
> -static void __exit imx_ssi_exit(void)
> -{
> -	platform_driver_unregister(&imx_ssi_driver);
> -}
> -
> -module_init(imx_ssi_init);
> -module_exit(imx_ssi_exit);
> +module_platform_driver(imx_ssi_driver);
>  
>  /* Module information */
>  MODULE_AUTHOR("Sascha Hauer, <s.hauer@pengutronix.de>");
> -- 
> 1.7.5.4
> 
> 
> 
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

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

end of thread, other threads:[~2011-11-28  9:29 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-24  7:03 [PATCH] ASoC: Convert imx directory to module_platform_driver Axel Lin
2011-11-28  9:29 ` Sascha Hauer

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.