summaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/88pm860x-codec.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/88pm860x-codec.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/88pm860x-codec.c')
-rw-r--r--sound/soc/codecs/88pm860x-codec.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/sound/soc/codecs/88pm860x-codec.c b/sound/soc/codecs/88pm860x-codec.c
index ea305b88cb55..2d39123dd21a 100644
--- a/sound/soc/codecs/88pm860x-codec.c
+++ b/sound/soc/codecs/88pm860x-codec.c
@@ -1481,17 +1481,7 @@ static struct platform_driver pm860x_codec_driver = {
.remove = __devexit_p(pm860x_codec_remove),
};
-static __init int pm860x_init(void)
-{
- return platform_driver_register(&pm860x_codec_driver);
-}
-module_init(pm860x_init);
-
-static __exit void pm860x_exit(void)
-{
- platform_driver_unregister(&pm860x_codec_driver);
-}
-module_exit(pm860x_exit);
+module_platform_driver(pm860x_codec_driver);
MODULE_DESCRIPTION("ASoC 88PM860x driver");
MODULE_AUTHOR("Haojian Zhuang <haojian.zhuang@marvell.com>");