diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-08-06 17:25:46 +0530 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-08-06 15:20:33 +0100 |
commit | 4abdc8c8fd25fa2f85d86babcbdb4fbbf759c86a (patch) | |
tree | f44d6b171b65e86478cee221c2ddf7757e18f942 /sound/soc/codecs/max9850.c | |
parent | beb22de07e87a2f6802cc0e916b2f5c6aeb3f59f (diff) | |
download | linux-next-4abdc8c8fd25fa2f85d86babcbdb4fbbf759c86a.tar.gz |
ASoC: max9850: 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/max9850.c')
-rw-r--r-- | sound/soc/codecs/max9850.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/sound/soc/codecs/max9850.c b/sound/soc/codecs/max9850.c index a1913091f56c..efe535c37b39 100644 --- a/sound/soc/codecs/max9850.c +++ b/sound/soc/codecs/max9850.c @@ -369,17 +369,7 @@ static struct i2c_driver max9850_i2c_driver = { .id_table = max9850_i2c_id, }; -static int __init max9850_init(void) -{ - return i2c_add_driver(&max9850_i2c_driver); -} -module_init(max9850_init); - -static void __exit max9850_exit(void) -{ - i2c_del_driver(&max9850_i2c_driver); -} -module_exit(max9850_exit); +module_i2c_driver(max9850_i2c_driver); MODULE_AUTHOR("Christian Glindkamp <christian.glindkamp@taskit.de>"); MODULE_DESCRIPTION("ASoC MAX9850 codec driver"); |