ASoC: cs4270: 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
38ece8db99
commit
5e383f53e8
1 changed files with 1 additions and 11 deletions
|
@ -752,17 +752,7 @@ static struct i2c_driver cs4270_i2c_driver = {
|
|||
.remove = cs4270_i2c_remove,
|
||||
};
|
||||
|
||||
static int __init cs4270_init(void)
|
||||
{
|
||||
return i2c_add_driver(&cs4270_i2c_driver);
|
||||
}
|
||||
module_init(cs4270_init);
|
||||
|
||||
static void __exit cs4270_exit(void)
|
||||
{
|
||||
i2c_del_driver(&cs4270_i2c_driver);
|
||||
}
|
||||
module_exit(cs4270_exit);
|
||||
module_i2c_driver(cs4270_i2c_driver);
|
||||
|
||||
MODULE_AUTHOR("Timur Tabi <timur@freescale.com>");
|
||||
MODULE_DESCRIPTION("Cirrus Logic CS4270 ALSA SoC Codec Driver");
|
||||
|
|
Loading…
Add table
Reference in a new issue