mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 10:56:45 +07:00
ASoC: max98088: 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
0b34ac810a
commit
2342a07f2c
@ -2107,23 +2107,7 @@ static struct i2c_driver max98088_i2c_driver = {
|
||||
.id_table = max98088_i2c_id,
|
||||
};
|
||||
|
||||
static int __init max98088_init(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
ret = i2c_add_driver(&max98088_i2c_driver);
|
||||
if (ret)
|
||||
pr_err("Failed to register max98088 I2C driver: %d\n", ret);
|
||||
|
||||
return ret;
|
||||
}
|
||||
module_init(max98088_init);
|
||||
|
||||
static void __exit max98088_exit(void)
|
||||
{
|
||||
i2c_del_driver(&max98088_i2c_driver);
|
||||
}
|
||||
module_exit(max98088_exit);
|
||||
module_i2c_driver(max98088_i2c_driver);
|
||||
|
||||
MODULE_DESCRIPTION("ALSA SoC MAX98088 driver");
|
||||
MODULE_AUTHOR("Peter Hsiang, Jesse Marroquin");
|
||||
|
Loading…
Reference in New Issue
Block a user