diff options
| author | Axel Lin <axel.lin@gmail.com> | 2011-11-25 10:10:55 +0800 | 
|---|---|---|
| committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-11-28 17:23:21 +0000 | 
| commit | ba0a7e024d2a0ccdb887cda149f3e11f1ce27101 (patch) | |
| tree | 0098d694f54671fb33f4254e224dc6be13ef81d6 | |
| parent | 6524c8e3e6525891d6085c7fb0f7fe5ce18e5b50 (diff) | |
| download | olio-linux-3.10-ba0a7e024d2a0ccdb887cda149f3e11f1ce27101.tar.xz olio-linux-3.10-ba0a7e024d2a0ccdb887cda149f3e11f1ce27101.zip  | |
ASoC: Convert fsl directory to module_platform_driver
Factor out some boilerplate code.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Acked-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
| -rw-r--r-- | sound/soc/fsl/fsl_dma.c | 15 | ||||
| -rw-r--r-- | sound/soc/fsl/fsl_ssi.c | 15 | ||||
| -rw-r--r-- | sound/soc/fsl/mpc5200_dma.c | 12 | ||||
| -rw-r--r-- | sound/soc/fsl/mpc5200_psc_ac97.c | 16 | ||||
| -rw-r--r-- | sound/soc/fsl/mpc5200_psc_i2s.c | 16 | 
5 files changed, 5 insertions, 69 deletions
diff --git a/sound/soc/fsl/fsl_dma.c b/sound/soc/fsl/fsl_dma.c index ef15402a3bc..4f59bbaba48 100644 --- a/sound/soc/fsl/fsl_dma.c +++ b/sound/soc/fsl/fsl_dma.c @@ -992,20 +992,7 @@ static struct platform_driver fsl_soc_dma_driver = {  	.remove = __devexit_p(fsl_soc_dma_remove),  }; -static int __init fsl_soc_dma_init(void) -{ -	pr_info("Freescale Elo DMA ASoC PCM Driver\n"); - -	return platform_driver_register(&fsl_soc_dma_driver); -} - -static void __exit fsl_soc_dma_exit(void) -{ -	platform_driver_unregister(&fsl_soc_dma_driver); -} - -module_init(fsl_soc_dma_init); -module_exit(fsl_soc_dma_exit); +module_platform_driver(fsl_soc_dma_driver);  MODULE_AUTHOR("Timur Tabi <timur@freescale.com>");  MODULE_DESCRIPTION("Freescale Elo DMA ASoC PCM Driver"); diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c index 17d857e55ef..3e066966d87 100644 --- a/sound/soc/fsl/fsl_ssi.c +++ b/sound/soc/fsl/fsl_ssi.c @@ -793,20 +793,7 @@ static struct platform_driver fsl_ssi_driver = {  	.remove = fsl_ssi_remove,  }; -static int __init fsl_ssi_init(void) -{ -	printk(KERN_INFO "Freescale Synchronous Serial Interface (SSI) ASoC Driver\n"); - -	return platform_driver_register(&fsl_ssi_driver); -} - -static void __exit fsl_ssi_exit(void) -{ -	platform_driver_unregister(&fsl_ssi_driver); -} - -module_init(fsl_ssi_init); -module_exit(fsl_ssi_exit); +module_platform_driver(fsl_ssi_driver);  MODULE_AUTHOR("Timur Tabi <timur@freescale.com>");  MODULE_DESCRIPTION("Freescale Synchronous Serial Interface (SSI) ASoC Driver"); diff --git a/sound/soc/fsl/mpc5200_dma.c b/sound/soc/fsl/mpc5200_dma.c index 5c6c2457386..e7803d34c42 100644 --- a/sound/soc/fsl/mpc5200_dma.c +++ b/sound/soc/fsl/mpc5200_dma.c @@ -526,17 +526,7 @@ static struct platform_driver mpc5200_hpcd_of_driver = {  	}  }; -static int __init mpc5200_hpcd_init(void) -{ -	return platform_driver_register(&mpc5200_hpcd_of_driver); -} -module_init(mpc5200_hpcd_init); - -static void __exit mpc5200_hpcd_exit(void) -{ -	platform_driver_unregister(&mpc5200_hpcd_of_driver); -} -module_exit(mpc5200_hpcd_exit); +module_platform_driver(mpc5200_hpcd_of_driver);  MODULE_AUTHOR("Grant Likely <grant.likely@secretlab.ca>");  MODULE_DESCRIPTION("Freescale MPC5200 PSC in DMA mode ASoC Driver"); diff --git a/sound/soc/fsl/mpc5200_psc_ac97.c b/sound/soc/fsl/mpc5200_psc_ac97.c index 2fb388f0150..ffa00a2eb77 100644 --- a/sound/soc/fsl/mpc5200_psc_ac97.c +++ b/sound/soc/fsl/mpc5200_psc_ac97.c @@ -325,21 +325,7 @@ static struct platform_driver psc_ac97_driver = {  	},  }; -/* --------------------------------------------------------------------- - * Module setup and teardown; simply register the of_platform driver - * for the PSC in AC97 mode. - */ -static int __init psc_ac97_init(void) -{ -	return platform_driver_register(&psc_ac97_driver); -} -module_init(psc_ac97_init); - -static void __exit psc_ac97_exit(void) -{ -	platform_driver_unregister(&psc_ac97_driver); -} -module_exit(psc_ac97_exit); +module_platform_driver(psc_ac97_driver);  MODULE_AUTHOR("Jon Smirl <jonsmirl@gmail.com>");  MODULE_DESCRIPTION("mpc5200 AC97 module"); diff --git a/sound/soc/fsl/mpc5200_psc_i2s.c b/sound/soc/fsl/mpc5200_psc_i2s.c index e77a1f20d4d..7b530327553 100644 --- a/sound/soc/fsl/mpc5200_psc_i2s.c +++ b/sound/soc/fsl/mpc5200_psc_i2s.c @@ -222,21 +222,7 @@ static struct platform_driver psc_i2s_driver = {  	},  }; -/* --------------------------------------------------------------------- - * Module setup and teardown; simply register the of_platform driver - * for the PSC in I2S mode. - */ -static int __init psc_i2s_init(void) -{ -	return platform_driver_register(&psc_i2s_driver); -} -module_init(psc_i2s_init); - -static void __exit psc_i2s_exit(void) -{ -	platform_driver_unregister(&psc_i2s_driver); -} -module_exit(psc_i2s_exit); +module_platform_driver(psc_i2s_driver);  MODULE_AUTHOR("Grant Likely <grant.likely@secretlab.ca>");  MODULE_DESCRIPTION("Freescale MPC5200 PSC in I2S mode ASoC Driver");  |