aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/codecs/max98095.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/codecs/max98095.c')
-rw-r--r--sound/soc/codecs/max98095.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/max98095.c b/sound/soc/codecs/max98095.c
index 38d43c59d3f4..41cdd1642970 100644
--- a/sound/soc/codecs/max98095.c
+++ b/sound/soc/codecs/max98095.c
@@ -2511,7 +2511,7 @@ static int max98095_i2c_probe(struct i2c_client *i2c,
2511 return ret; 2511 return ret;
2512} 2512}
2513 2513
2514static int __devexit max98095_i2c_remove(struct i2c_client *client) 2514static int max98095_i2c_remove(struct i2c_client *client)
2515{ 2515{
2516 snd_soc_unregister_codec(&client->dev); 2516 snd_soc_unregister_codec(&client->dev);
2517 return 0; 2517 return 0;
@@ -2529,7 +2529,7 @@ static struct i2c_driver max98095_i2c_driver = {
2529 .owner = THIS_MODULE, 2529 .owner = THIS_MODULE,
2530 }, 2530 },
2531 .probe = max98095_i2c_probe, 2531 .probe = max98095_i2c_probe,
2532 .remove = __devexit_p(max98095_i2c_remove), 2532 .remove = max98095_i2c_remove,
2533 .id_table = max98095_i2c_id, 2533 .id_table = max98095_i2c_id,
2534}; 2534};
2535 2535