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/hac.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/hac.c')
-rw-r--r-- | sound/soc/sh/hac.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/sound/soc/sh/hac.c b/sound/soc/sh/hac.c index a1f307b9a82d..3474d7befe5a 100644 --- a/sound/soc/sh/hac.c +++ b/sound/soc/sh/hac.c | |||
@@ -332,17 +332,7 @@ static struct platform_driver hac_pcm_driver = { | |||
332 | .remove = __devexit_p(hac_soc_platform_remove), | 332 | .remove = __devexit_p(hac_soc_platform_remove), |
333 | }; | 333 | }; |
334 | 334 | ||
335 | static int __init sh4_hac_pcm_init(void) | 335 | module_platform_driver(hac_pcm_driver); |
336 | { | ||
337 | return platform_driver_register(&hac_pcm_driver); | ||
338 | } | ||
339 | module_init(sh4_hac_pcm_init); | ||
340 | |||
341 | static void __exit sh4_hac_pcm_exit(void) | ||
342 | { | ||
343 | platform_driver_unregister(&hac_pcm_driver); | ||
344 | } | ||
345 | module_exit(sh4_hac_pcm_exit); | ||
346 | 336 | ||
347 | MODULE_LICENSE("GPL"); | 337 | MODULE_LICENSE("GPL"); |
348 | MODULE_DESCRIPTION("SuperH onchip HAC (AC97) audio driver"); | 338 | MODULE_DESCRIPTION("SuperH onchip HAC (AC97) audio driver"); |