Commit c300d6de authored by Wei Yongjun's avatar Wei Yongjun Committed by Mark Brown
Browse files

ASoC: tas5086: use module_i2c_driver to simplify the code



Use the module_i2c_driver() macro to make the code smaller
and a bit simpler.

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: default avatarDaniel Mack <zonque@gmail.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 4fa89346
Loading
Loading
Loading
Loading
+1 −11
Original line number Diff line number Diff line
@@ -584,17 +584,7 @@ static struct i2c_driver tas5086_i2c_driver = {
	.remove		= tas5086_i2c_remove,
};

static int __init tas5086_modinit(void)
{
	return i2c_add_driver(&tas5086_i2c_driver);
}
module_init(tas5086_modinit);

static void __exit tas5086_modexit(void)
{
	i2c_del_driver(&tas5086_i2c_driver);
}
module_exit(tas5086_modexit);
module_i2c_driver(tas5086_i2c_driver);

MODULE_AUTHOR("Daniel Mack <zonque@gmail.com>");
MODULE_DESCRIPTION("Texas Instruments TAS5086 ALSA SoC Codec Driver");