diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-11-23 17:52:08 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-11-28 06:33:29 -0500 |
commit | 5bbcc3c0d0f063318ec83146d1958acf7154c66f (patch) | |
tree | f0fdcb131a8c1dd2c58b727357f897e1f15d0791 /sound/soc/codecs/cq93vc.c | |
parent | be086aa8ca7aac8292db9f1a6a17756fb1cfda81 (diff) |
ASoC: Convert CODEC drivers to module_platform_driver
Factors out a bit of boilerplate.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/cq93vc.c')
-rw-r--r-- | sound/soc/codecs/cq93vc.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/sound/soc/codecs/cq93vc.c b/sound/soc/codecs/cq93vc.c index cbb3028e2008..4854b472d5fd 100644 --- a/sound/soc/codecs/cq93vc.c +++ b/sound/soc/codecs/cq93vc.c | |||
@@ -206,17 +206,7 @@ static struct platform_driver cq93vc_codec_driver = { | |||
206 | .remove = __devexit_p(cq93vc_platform_remove), | 206 | .remove = __devexit_p(cq93vc_platform_remove), |
207 | }; | 207 | }; |
208 | 208 | ||
209 | static int __init cq93vc_init(void) | 209 | module_platform_driver(cq93vc_codec_driver); |
210 | { | ||
211 | return platform_driver_register(&cq93vc_codec_driver); | ||
212 | } | ||
213 | module_init(cq93vc_init); | ||
214 | |||
215 | static void __exit cq93vc_exit(void) | ||
216 | { | ||
217 | platform_driver_unregister(&cq93vc_codec_driver); | ||
218 | } | ||
219 | module_exit(cq93vc_exit); | ||
220 | 210 | ||
221 | MODULE_DESCRIPTION("Texas Instruments DaVinci ASoC CQ0093 Voice Codec Driver"); | 211 | MODULE_DESCRIPTION("Texas Instruments DaVinci ASoC CQ0093 Voice Codec Driver"); |
222 | MODULE_AUTHOR("Miguel Aguilar"); | 212 | MODULE_AUTHOR("Miguel Aguilar"); |