mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
ASoC: wm8991: 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
96124c2910
commit
38ece8db99
@ -1400,23 +1400,7 @@ static struct i2c_driver wm8991_i2c_driver = {
|
||||
.id_table = wm8991_i2c_id,
|
||||
};
|
||||
|
||||
static int __init wm8991_modinit(void)
|
||||
{
|
||||
int ret;
|
||||
ret = i2c_add_driver(&wm8991_i2c_driver);
|
||||
if (ret != 0) {
|
||||
printk(KERN_ERR "Failed to register WM8991 I2C driver: %d\n",
|
||||
ret);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
module_init(wm8991_modinit);
|
||||
|
||||
static void __exit wm8991_exit(void)
|
||||
{
|
||||
i2c_del_driver(&wm8991_i2c_driver);
|
||||
}
|
||||
module_exit(wm8991_exit);
|
||||
module_i2c_driver(wm8991_i2c_driver);
|
||||
|
||||
MODULE_DESCRIPTION("ASoC WM8991 driver");
|
||||
MODULE_AUTHOR("Graeme Gregory");
|
||||
|
Loading…
Reference in New Issue
Block a user