aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/txx9/txx9aclc.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@gmail.com>2011-11-24 21:16:10 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-11-25 08:15:30 -0500
commit33d316cd8b39fda7106332e5554f5959dc04b4dc (patch)
treea27a6cf7e98ee8f2d0ae3493a7d2da00664e708f /sound/soc/txx9/txx9aclc.c
parentcb5e87387cfa8172faca36682e2df069b006efdf (diff)
ASoC: Convert txx9 directory to module_platform_driver
Factor out some boilerplate code. Signed-off-by: Axel Lin <axel.lin@gmail.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/txx9/txx9aclc.c')
-rw-r--r--sound/soc/txx9/txx9aclc.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/sound/soc/txx9/txx9aclc.c b/sound/soc/txx9/txx9aclc.c
index 3de99af8cb82..93931def0dce 100644
--- a/sound/soc/txx9/txx9aclc.c
+++ b/sound/soc/txx9/txx9aclc.c
@@ -438,17 +438,7 @@ static struct platform_driver txx9aclc_pcm_driver = {
438 .remove = __devexit_p(txx9aclc_soc_platform_remove), 438 .remove = __devexit_p(txx9aclc_soc_platform_remove),
439}; 439};
440 440
441static int __init snd_txx9aclc_pcm_init(void) 441module_platform_driver(txx9aclc_pcm_driver);
442{
443 return platform_driver_register(&txx9aclc_pcm_driver);
444}
445module_init(snd_txx9aclc_pcm_init);
446
447static void __exit snd_txx9aclc_pcm_exit(void)
448{
449 platform_driver_unregister(&txx9aclc_pcm_driver);
450}
451module_exit(snd_txx9aclc_pcm_exit);
452 442
453MODULE_AUTHOR("Atsushi Nemoto <anemo@mba.ocn.ne.jp>"); 443MODULE_AUTHOR("Atsushi Nemoto <anemo@mba.ocn.ne.jp>");
454MODULE_DESCRIPTION("TXx9 ACLC Audio DMA driver"); 444MODULE_DESCRIPTION("TXx9 ACLC Audio DMA driver");