diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-08-06 17:25:49 +0530 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-08-06 15:20:33 +0100 |
commit | f6ec139f2dc5380c542fa3100dbe1c73324be432 (patch) | |
tree | c2289733c41dc80834fe0181b6549695999cec66 /sound/soc/codecs/lm4857.c | |
parent | 0ecbbb4fe5f0aae4cd70ec02383fd6b96aedb052 (diff) | |
download | linux-f6ec139f2dc5380c542fa3100dbe1c73324be432.tar.gz linux-f6ec139f2dc5380c542fa3100dbe1c73324be432.tar.bz2 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.c | 12 |
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"); |