Skip to content

Commit

Permalink
ASoC: sound/max98088: add missing __devexit marker
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
lacombar authored and tiwai committed Oct 27, 2010
1 parent 836f539 commit f3607ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/codecs/max98088.c
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit f3607ae

Please sign in to comment.