Skip to content

Commit

Permalink
ASoC: wm8962: 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 Feb 17, 2012
1 parent 1a8b2d9 commit 9d50a76
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions sound/soc/codecs/wm8962.c
Original file line number Diff line number Diff line change
Expand Up @@ -3768,17 +3768,7 @@ static struct i2c_driver wm8962_i2c_driver = {
.id_table = wm8962_i2c_id,
};

static int __init wm8962_modinit(void)
{
return i2c_add_driver(&wm8962_i2c_driver);
}
module_init(wm8962_modinit);

static void __exit wm8962_exit(void)
{
i2c_del_driver(&wm8962_i2c_driver);
}
module_exit(wm8962_exit);
module_i2c_driver(wm8962_i2c_driver);

MODULE_DESCRIPTION("ASoC WM8962 driver");
MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
Expand Down

0 comments on commit 9d50a76

Please sign in to comment.