summaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/pcm3008.c
diff options
context:
space:
mode:
authorMark Brown2011-11-23 23:52:08 +0100
committerMark Brown2011-11-28 12:33:29 +0100
commit5bbcc3c0d0f063318ec83146d1958acf7154c66f (patch)
treef0fdcb131a8c1dd2c58b727357f897e1f15d0791 /sound/soc/codecs/pcm3008.c
parentASoC: Convert WM8962 to devm_kzalloc() (diff)
downloadkernel-qcow2-linux-5bbcc3c0d0f063318ec83146d1958acf7154c66f.tar.gz
kernel-qcow2-linux-5bbcc3c0d0f063318ec83146d1958acf7154c66f.tar.xz
kernel-qcow2-linux-5bbcc3c0d0f063318ec83146d1958acf7154c66f.zip
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/pcm3008.c')
-rw-r--r--sound/soc/codecs/pcm3008.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/sound/soc/codecs/pcm3008.c b/sound/soc/codecs/pcm3008.c
index f7316519432c..b12d01f67990 100644
--- a/sound/soc/codecs/pcm3008.c
+++ b/sound/soc/codecs/pcm3008.c
@@ -172,17 +172,7 @@ static struct platform_driver pcm3008_codec_driver = {
},
};
-static int __init pcm3008_modinit(void)
-{
- return platform_driver_register(&pcm3008_codec_driver);
-}
-module_init(pcm3008_modinit);
-
-static void __exit pcm3008_exit(void)
-{
- platform_driver_unregister(&pcm3008_codec_driver);
-}
-module_exit(pcm3008_exit);
+module_platform_driver(pcm3008_codec_driver);
MODULE_DESCRIPTION("Soc PCM3008 driver");
MODULE_AUTHOR("Hugo Villeneuve");