mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
ASoC: wm8974: 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>
This commit is contained in:
parent
3c010e60ee
commit
2be59418f7
@ -659,23 +659,7 @@ static struct i2c_driver wm8974_i2c_driver = {
|
||||
.id_table = wm8974_i2c_id,
|
||||
};
|
||||
|
||||
static int __init wm8974_modinit(void)
|
||||
{
|
||||
int ret = 0;
|
||||
ret = i2c_add_driver(&wm8974_i2c_driver);
|
||||
if (ret != 0) {
|
||||
printk(KERN_ERR "Failed to register wm8974 I2C driver: %d\n",
|
||||
ret);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
module_init(wm8974_modinit);
|
||||
|
||||
static void __exit wm8974_exit(void)
|
||||
{
|
||||
i2c_del_driver(&wm8974_i2c_driver);
|
||||
}
|
||||
module_exit(wm8974_exit);
|
||||
module_i2c_driver(wm8974_i2c_driver);
|
||||
|
||||
MODULE_DESCRIPTION("ASoC WM8974 driver");
|
||||
MODULE_AUTHOR("Liam Girdwood");
|
||||
|
Loading…
Reference in New Issue
Block a user