diff options
author | Arnaud Lacombe <lacombar@gmail.com> | 2010-10-26 16:04:35 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-10-27 07:53:31 +0200 |
commit | f3607aef0d3370ae9edbfecfc7182233397cb0aa (patch) | |
tree | fb674eec9768f7fafd709a666a987cd73b9ce262 /sound | |
parent | 836f5394061830a9d1ece4aafc437c098774522f (diff) | |
download | linux-3.10-f3607aef0d3370ae9edbfecfc7182233397cb0aa.tar.gz linux-3.10-f3607aef0d3370ae9edbfecfc7182233397cb0aa.tar.bz2 linux-3.10-f3607aef0d3370ae9edbfecfc7182233397cb0aa.zip |
ASoC: sound/max98088: add missing __devexit marker
This fixes the following warning:
sound/soc/codecs/max98088.c:2054:12: warning: 'max98088_i2c_remove' defined but not used
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/max98088.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/max98088.c b/sound/soc/codecs/max98088.c index e7a40d16df9..bc22ee93a75 100644 --- a/sound/soc/codecs/max98088.c +++ b/sound/soc/codecs/max98088.c @@ -2051,7 +2051,7 @@ static int max98088_i2c_probe(struct i2c_client *i2c, return ret; } -static int max98088_i2c_remove(struct i2c_client *client) +static int __devexit max98088_i2c_remove(struct i2c_client *client) { snd_soc_unregister_codec(&client->dev); kfree(i2c_get_clientdata(client)); |