mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-03-06 11:40:52 +00:00
ASoC: max9850: 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
beb22de07e
commit
4abdc8c8fd
@ -369,17 +369,7 @@ static struct i2c_driver max9850_i2c_driver = {
|
|||||||
.id_table = max9850_i2c_id,
|
.id_table = max9850_i2c_id,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init max9850_init(void)
|
module_i2c_driver(max9850_i2c_driver);
|
||||||
{
|
|
||||||
return i2c_add_driver(&max9850_i2c_driver);
|
|
||||||
}
|
|
||||||
module_init(max9850_init);
|
|
||||||
|
|
||||||
static void __exit max9850_exit(void)
|
|
||||||
{
|
|
||||||
i2c_del_driver(&max9850_i2c_driver);
|
|
||||||
}
|
|
||||||
module_exit(max9850_exit);
|
|
||||||
|
|
||||||
MODULE_AUTHOR("Christian Glindkamp <christian.glindkamp@taskit.de>");
|
MODULE_AUTHOR("Christian Glindkamp <christian.glindkamp@taskit.de>");
|
||||||
MODULE_DESCRIPTION("ASoC MAX9850 codec driver");
|
MODULE_DESCRIPTION("ASoC MAX9850 codec driver");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user