ASoC: lm4857: 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
0ecbbb4fe5
commit
f6ec139f2d
1 changed files with 1 additions and 11 deletions
|
@ -250,17 +250,7 @@ static struct i2c_driver lm4857_i2c_driver = {
|
|||
.id_table = lm4857_i2c_id,
|
||||
};
|
||||
|
||||
static int __init lm4857_init(void)
|
||||
{
|
||||
return i2c_add_driver(&lm4857_i2c_driver);
|
||||
}
|
||||
module_init(lm4857_init);
|
||||
|
||||
static void __exit lm4857_exit(void)
|
||||
{
|
||||
i2c_del_driver(&lm4857_i2c_driver);
|
||||
}
|
||||
module_exit(lm4857_exit);
|
||||
module_i2c_driver(lm4857_i2c_driver);
|
||||
|
||||
MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
|
||||
MODULE_DESCRIPTION("LM4857 amplifier driver");
|
||||
|
|
Loading…
Reference in a new issue