diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-08-06 07:55:42 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-08-06 10:20:32 -0400 |
commit | fd39d14b9676cfd3dbd5b7bfdefe3ec6149b9e1a (patch) | |
tree | 107c26aee7f36712b192fc9d1e23327f44edb438 | |
parent | 5e383f53e80f4c644bc49a17b5590b110bad5832 (diff) |
ASoC: tlv320aic3x: 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>
-rw-r--r-- | sound/soc/codecs/tlv320aic3x.c | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/sound/soc/codecs/tlv320aic3x.c b/sound/soc/codecs/tlv320aic3x.c index dc78f5a4bcbf..01485bd51404 100644 --- a/sound/soc/codecs/tlv320aic3x.c +++ b/sound/soc/codecs/tlv320aic3x.c | |||
@@ -1499,23 +1499,7 @@ static struct i2c_driver aic3x_i2c_driver = { | |||
1499 | .id_table = aic3x_i2c_id, | 1499 | .id_table = aic3x_i2c_id, |
1500 | }; | 1500 | }; |
1501 | 1501 | ||
1502 | static int __init aic3x_modinit(void) | 1502 | module_i2c_driver(aic3x_i2c_driver); |
1503 | { | ||
1504 | int ret = 0; | ||
1505 | ret = i2c_add_driver(&aic3x_i2c_driver); | ||
1506 | if (ret != 0) { | ||
1507 | printk(KERN_ERR "Failed to register TLV320AIC3x I2C driver: %d\n", | ||
1508 | ret); | ||
1509 | } | ||
1510 | return ret; | ||
1511 | } | ||
1512 | module_init(aic3x_modinit); | ||
1513 | |||
1514 | static void __exit aic3x_exit(void) | ||
1515 | { | ||
1516 | i2c_del_driver(&aic3x_i2c_driver); | ||
1517 | } | ||
1518 | module_exit(aic3x_exit); | ||
1519 | 1503 | ||
1520 | MODULE_DESCRIPTION("ASoC TLV320AIC3X codec driver"); | 1504 | MODULE_DESCRIPTION("ASoC TLV320AIC3X codec driver"); |
1521 | MODULE_AUTHOR("Vladimir Barinov"); | 1505 | MODULE_AUTHOR("Vladimir Barinov"); |