diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-08-06 07:55:43 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-08-06 10:20:32 -0400 |
commit | 0ead1136bda75d04cc134960bd265eebe210f74b (patch) | |
tree | f6cdac95e1b9b7fe197e7f5e091ffdd69ecfc465 /sound/soc | |
parent | fd39d14b9676cfd3dbd5b7bfdefe3ec6149b9e1a (diff) |
ASoC: sta32x: 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')
-rw-r--r-- | sound/soc/codecs/sta32x.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/sound/soc/codecs/sta32x.c b/sound/soc/codecs/sta32x.c index 8d717f4b5a87..51b7313a4c14 100644 --- a/sound/soc/codecs/sta32x.c +++ b/sound/soc/codecs/sta32x.c | |||
@@ -1006,17 +1006,7 @@ static struct i2c_driver sta32x_i2c_driver = { | |||
1006 | .id_table = sta32x_i2c_id, | 1006 | .id_table = sta32x_i2c_id, |
1007 | }; | 1007 | }; |
1008 | 1008 | ||
1009 | static int __init sta32x_init(void) | 1009 | module_i2c_driver(sta32x_i2c_driver); |
1010 | { | ||
1011 | return i2c_add_driver(&sta32x_i2c_driver); | ||
1012 | } | ||
1013 | module_init(sta32x_init); | ||
1014 | |||
1015 | static void __exit sta32x_exit(void) | ||
1016 | { | ||
1017 | i2c_del_driver(&sta32x_i2c_driver); | ||
1018 | } | ||
1019 | module_exit(sta32x_exit); | ||
1020 | 1010 | ||
1021 | MODULE_DESCRIPTION("ASoC STA32X driver"); | 1011 | MODULE_DESCRIPTION("ASoC STA32X driver"); |
1022 | MODULE_AUTHOR("Johannes Stezenbach <js@sig21.net>"); | 1012 | MODULE_AUTHOR("Johannes Stezenbach <js@sig21.net>"); |