summaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/tlv320aic32x4.c
diff options
context:
space:
mode:
authorSachin Kamat2012-08-06 13:55:34 +0200
committerMark Brown2012-08-06 16:20:30 +0200
commit3b09efd1decb2b36ba2c7eb88ae4893f0581e470 (patch)
treec950e3711aeb778f4eb0aac9f6ea4d66606e2ee6 /sound/soc/codecs/tlv320aic32x4.c
parentASoC: imx-ssi: Say if we fail to register a second AC'97 bus (diff)
downloadkernel-qcow2-linux-3b09efd1decb2b36ba2c7eb88ae4893f0581e470.tar.gz
kernel-qcow2-linux-3b09efd1decb2b36ba2c7eb88ae4893f0581e470.tar.xz
kernel-qcow2-linux-3b09efd1decb2b36ba2c7eb88ae4893f0581e470.zip
ASoC: tlv320aic32x4: 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>
Diffstat (limited to 'sound/soc/codecs/tlv320aic32x4.c')
-rw-r--r--sound/soc/codecs/tlv320aic32x4.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/sound/soc/codecs/tlv320aic32x4.c b/sound/soc/codecs/tlv320aic32x4.c
index b0a73d37ed52..f230292ba96b 100644
--- a/sound/soc/codecs/tlv320aic32x4.c
+++ b/sound/soc/codecs/tlv320aic32x4.c
@@ -746,24 +746,7 @@ static struct i2c_driver aic32x4_i2c_driver = {
.id_table = aic32x4_i2c_id,
};
-static int __init aic32x4_modinit(void)
-{
- int ret = 0;
-
- ret = i2c_add_driver(&aic32x4_i2c_driver);
- if (ret != 0) {
- printk(KERN_ERR "Failed to register aic32x4 I2C driver: %d\n",
- ret);
- }
- return ret;
-}
-module_init(aic32x4_modinit);
-
-static void __exit aic32x4_exit(void)
-{
- i2c_del_driver(&aic32x4_i2c_driver);
-}
-module_exit(aic32x4_exit);
+module_i2c_driver(aic32x4_i2c_driver);
MODULE_DESCRIPTION("ASoC tlv320aic32x4 codec driver");
MODULE_AUTHOR("Javier Martin <javier.martin@vista-silicon.com>");