diff options
| author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-08-06 17:25:36 +0530 | 
|---|---|---|
| committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-08-06 15:20:35 +0100 | 
| commit | 3c010e60ee54ee19dc2f39b4efa43dea03d65aaa (patch) | |
| tree | b010b541d0f7c6a00475b14c68d2cb2847c75b26 | |
| parent | d0b2d4fabb262dd7200382ee834d4292f6d76b1e (diff) | |
| download | olio-linux-3.10-3c010e60ee54ee19dc2f39b4efa43dea03d65aaa.tar.xz olio-linux-3.10-3c010e60ee54ee19dc2f39b4efa43dea03d65aaa.zip  | |
ASoC: wm8960: 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>
| -rw-r--r-- | sound/soc/codecs/wm8960.c | 18 | 
1 files changed, 1 insertions, 17 deletions
diff --git a/sound/soc/codecs/wm8960.c b/sound/soc/codecs/wm8960.c index 96518ac8e24..804f4116912 100644 --- a/sound/soc/codecs/wm8960.c +++ b/sound/soc/codecs/wm8960.c @@ -1010,23 +1010,7 @@ static struct i2c_driver wm8960_i2c_driver = {  	.id_table = wm8960_i2c_id,  }; -static int __init wm8960_modinit(void) -{ -	int ret = 0; -	ret = i2c_add_driver(&wm8960_i2c_driver); -	if (ret != 0) { -		printk(KERN_ERR "Failed to register WM8960 I2C driver: %d\n", -		       ret); -	} -	return ret; -} -module_init(wm8960_modinit); - -static void __exit wm8960_exit(void) -{ -	i2c_del_driver(&wm8960_i2c_driver); -} -module_exit(wm8960_exit); +module_i2c_driver(wm8960_i2c_driver);  MODULE_DESCRIPTION("ASoC WM8960 driver");  MODULE_AUTHOR("Liam Girdwood");  |