aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/sta32x.c
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2012-08-06 07:55:43 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-08-06 10:20:32 -0400
commit0ead1136bda75d04cc134960bd265eebe210f74b (patch)
treef6cdac95e1b9b7fe197e7f5e091ffdd69ecfc465 /sound/soc/codecs/sta32x.c
parentfd39d14b9676cfd3dbd5b7bfdefe3ec6149b9e1a (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/codecs/sta32x.c')
-rw-r--r--sound/soc/codecs/sta32x.c12
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
1009static int __init sta32x_init(void) 1009module_i2c_driver(sta32x_i2c_driver);
1010{
1011 return i2c_add_driver(&sta32x_i2c_driver);
1012}
1013module_init(sta32x_init);
1014
1015static void __exit sta32x_exit(void)
1016{
1017 i2c_del_driver(&sta32x_i2c_driver);
1018}
1019module_exit(sta32x_exit);
1020 1010
1021MODULE_DESCRIPTION("ASoC STA32X driver"); 1011MODULE_DESCRIPTION("ASoC STA32X driver");
1022MODULE_AUTHOR("Johannes Stezenbach <js@sig21.net>"); 1012MODULE_AUTHOR("Johannes Stezenbach <js@sig21.net>");