Skip to content

Commit

Permalink
ASoC: ak4641: Convert to module_i2c_driver()
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Mark Brown committed Apr 1, 2012
1 parent dd775ae commit a0abacd
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions sound/soc/codecs/ak4641.c
Original file line number Diff line number Diff line change
Expand Up @@ -641,23 +641,7 @@ static struct i2c_driver ak4641_i2c_driver = {
.id_table = ak4641_i2c_id,
};

static int __init ak4641_modinit(void)
{
int ret;

ret = i2c_add_driver(&ak4641_i2c_driver);
if (ret != 0)
pr_err("Failed to register AK4641 I2C driver: %d\n", ret);

return ret;
}
module_init(ak4641_modinit);

static void __exit ak4641_exit(void)
{
i2c_del_driver(&ak4641_i2c_driver);
}
module_exit(ak4641_exit);
module_i2c_driver(ak4641_i2c_driver);

MODULE_DESCRIPTION("SoC AK4641 driver");
MODULE_AUTHOR("Harald Welte <laforge@gnufiish.org>");
Expand Down

0 comments on commit a0abacd

Please sign in to comment.