summaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/lm4857.c
diff options
context:
space:
mode:
authorSachin Kamat2012-08-06 13:55:49 +0200
committerMark Brown2012-08-06 16:20:33 +0200
commitf6ec139f2dc5380c542fa3100dbe1c73324be432 (patch)
treec2289733c41dc80834fe0181b6549695999cec66 /sound/soc/codecs/lm4857.c
parentASoC: ak4671: Use module_i2c_driver (diff)
downloadkernel-qcow2-linux-f6ec139f2dc5380c542fa3100dbe1c73324be432.tar.gz
kernel-qcow2-linux-f6ec139f2dc5380c542fa3100dbe1c73324be432.tar.xz
kernel-qcow2-linux-f6ec139f2dc5380c542fa3100dbe1c73324be432.zip
ASoC: lm4857: Use module_i2c_driver
module_i2c_driver makes the code simpler by eliminating module_init and module_exit calls. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/lm4857.c')
-rw-r--r--sound/soc/codecs/lm4857.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/sound/soc/codecs/lm4857.c b/sound/soc/codecs/lm4857.c
index ba4fafb93e56..81a328c78838 100644
--- a/sound/soc/codecs/lm4857.c
+++ b/sound/soc/codecs/lm4857.c
@@ -250,17 +250,7 @@ static struct i2c_driver lm4857_i2c_driver = {
.id_table = lm4857_i2c_id,
};
-static int __init lm4857_init(void)
-{
- return i2c_add_driver(&lm4857_i2c_driver);
-}
-module_init(lm4857_init);
-
-static void __exit lm4857_exit(void)
-{
- i2c_del_driver(&lm4857_i2c_driver);
-}
-module_exit(lm4857_exit);
+module_i2c_driver(lm4857_i2c_driver);
MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
MODULE_DESCRIPTION("LM4857 amplifier driver");