aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/ml26124.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/codecs/ml26124.c')
-rw-r--r--sound/soc/codecs/ml26124.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/soc/codecs/ml26124.c b/sound/soc/codecs/ml26124.c
index 96aa5fa05160..26118828782b 100644
--- a/sound/soc/codecs/ml26124.c
+++ b/sound/soc/codecs/ml26124.c
@@ -626,8 +626,8 @@ static const struct regmap_config ml26124_i2c_regmap = {
626 .write_flag_mask = 0x01, 626 .write_flag_mask = 0x01,
627}; 627};
628 628
629static __devinit int ml26124_i2c_probe(struct i2c_client *i2c, 629static int ml26124_i2c_probe(struct i2c_client *i2c,
630 const struct i2c_device_id *id) 630 const struct i2c_device_id *id)
631{ 631{
632 struct ml26124_priv *priv; 632 struct ml26124_priv *priv;
633 int ret; 633 int ret;
@@ -649,7 +649,7 @@ static __devinit int ml26124_i2c_probe(struct i2c_client *i2c,
649 &soc_codec_dev_ml26124, &ml26124_dai, 1); 649 &soc_codec_dev_ml26124, &ml26124_dai, 1);
650} 650}
651 651
652static __devexit int ml26124_i2c_remove(struct i2c_client *client) 652static int ml26124_i2c_remove(struct i2c_client *client)
653{ 653{
654 snd_soc_unregister_codec(&client->dev); 654 snd_soc_unregister_codec(&client->dev);
655 return 0; 655 return 0;
@@ -667,7 +667,7 @@ static struct i2c_driver ml26124_i2c_driver = {
667 .owner = THIS_MODULE, 667 .owner = THIS_MODULE,
668 }, 668 },
669 .probe = ml26124_i2c_probe, 669 .probe = ml26124_i2c_probe,
670 .remove = __devexit_p(ml26124_i2c_remove), 670 .remove = ml26124_i2c_remove,
671 .id_table = ml26124_i2c_id, 671 .id_table = ml26124_i2c_id,
672}; 672};
673 673