diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-04-09 14:37:25 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-04-10 04:31:56 -0400 |
commit | bbdd39155682e444941cc70f991154f2936a522b (patch) | |
tree | 013b4d5a239b6bb953b56bc1929130822e00d34f /sound/soc/codecs/wm1250-ev1.c | |
parent | 82ef0ae46b8614f052cc3ee856c5624eff614063 (diff) |
ASoC: wm1250-ev1: Convert to module_i2c_driver
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/codecs/wm1250-ev1.c')
-rw-r--r-- | sound/soc/codecs/wm1250-ev1.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/sound/soc/codecs/wm1250-ev1.c b/sound/soc/codecs/wm1250-ev1.c index aefb4f89be0e..e7a599a78170 100644 --- a/sound/soc/codecs/wm1250-ev1.c +++ b/sound/soc/codecs/wm1250-ev1.c | |||
@@ -215,23 +215,7 @@ static struct i2c_driver wm1250_ev1_i2c_driver = { | |||
215 | .id_table = wm1250_ev1_i2c_id, | 215 | .id_table = wm1250_ev1_i2c_id, |
216 | }; | 216 | }; |
217 | 217 | ||
218 | static int __init wm1250_ev1_modinit(void) | 218 | module_i2c_driver(wm1250_ev1_i2c_driver); |
219 | { | ||
220 | int ret = 0; | ||
221 | |||
222 | ret = i2c_add_driver(&wm1250_ev1_i2c_driver); | ||
223 | if (ret != 0) | ||
224 | pr_err("Failed to register WM1250-EV1 I2C driver: %d\n", ret); | ||
225 | |||
226 | return ret; | ||
227 | } | ||
228 | module_init(wm1250_ev1_modinit); | ||
229 | |||
230 | static void __exit wm1250_ev1_exit(void) | ||
231 | { | ||
232 | i2c_del_driver(&wm1250_ev1_i2c_driver); | ||
233 | } | ||
234 | module_exit(wm1250_ev1_exit); | ||
235 | 219 | ||
236 | MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>"); | 220 | MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>"); |
237 | MODULE_DESCRIPTION("WM1250-EV1 audio I/O module driver"); | 221 | MODULE_DESCRIPTION("WM1250-EV1 audio I/O module driver"); |