diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-11-24 21:15:07 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-11-25 08:15:29 -0500 |
commit | cb5e87387cfa8172faca36682e2df069b006efdf (patch) | |
tree | 2d547197742fda15a5a3f7e746a470518059eb32 /sound/soc/sh/dma-sh7760.c | |
parent | 2f702a19154ddbd294825c0588593e1eef10b1e2 (diff) |
ASoC: Convert sh 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/sh/dma-sh7760.c')
-rw-r--r-- | sound/soc/sh/dma-sh7760.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/sound/soc/sh/dma-sh7760.c b/sound/soc/sh/dma-sh7760.c index db74005f37ce..7da20186b19e 100644 --- a/sound/soc/sh/dma-sh7760.c +++ b/sound/soc/sh/dma-sh7760.c | |||
@@ -369,17 +369,7 @@ static struct platform_driver sh7760_pcm_driver = { | |||
369 | .remove = __devexit_p(sh7760_soc_platform_remove), | 369 | .remove = __devexit_p(sh7760_soc_platform_remove), |
370 | }; | 370 | }; |
371 | 371 | ||
372 | static int __init snd_sh7760_pcm_init(void) | 372 | module_platform_driver(sh7760_pcm_driver); |
373 | { | ||
374 | return platform_driver_register(&sh7760_pcm_driver); | ||
375 | } | ||
376 | module_init(snd_sh7760_pcm_init); | ||
377 | |||
378 | static void __exit snd_sh7760_pcm_exit(void) | ||
379 | { | ||
380 | platform_driver_unregister(&sh7760_pcm_driver); | ||
381 | } | ||
382 | module_exit(snd_sh7760_pcm_exit); | ||
383 | 373 | ||
384 | MODULE_LICENSE("GPL"); | 374 | MODULE_LICENSE("GPL"); |
385 | MODULE_DESCRIPTION("SH7760 Audio DMA (DMABRG) driver"); | 375 | MODULE_DESCRIPTION("SH7760 Audio DMA (DMABRG) driver"); |