ASoC: sta32x: 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
fd39d14b96
commit
0ead1136bd
@ -1006,17 +1006,7 @@ static struct i2c_driver sta32x_i2c_driver = {
|
|||||||
.id_table = sta32x_i2c_id,
|
.id_table = sta32x_i2c_id,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init sta32x_init(void)
|
module_i2c_driver(sta32x_i2c_driver);
|
||||||
{
|
|
||||||
return i2c_add_driver(&sta32x_i2c_driver);
|
|
||||||
}
|
|
||||||
module_init(sta32x_init);
|
|
||||||
|
|
||||||
static void __exit sta32x_exit(void)
|
|
||||||
{
|
|
||||||
i2c_del_driver(&sta32x_i2c_driver);
|
|
||||||
}
|
|
||||||
module_exit(sta32x_exit);
|
|
||||||
|
|
||||||
MODULE_DESCRIPTION("ASoC STA32X driver");
|
MODULE_DESCRIPTION("ASoC STA32X driver");
|
||||||
MODULE_AUTHOR("Johannes Stezenbach <js@sig21.net>");
|
MODULE_AUTHOR("Johannes Stezenbach <js@sig21.net>");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user