Skip to content

Commit

Permalink
ASoC: sound/wm9090: add missing __devexit marker
Browse files Browse the repository at this point in the history
This fixes the following warning:

sound/soc/codecs/wm9090.c:668:12: warning: 'wm9090_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 f3607ae commit 0d040df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/codecs/wm9090.c
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ static int wm9090_i2c_probe(struct i2c_client *i2c,
return ret;
}

static int wm9090_i2c_remove(struct i2c_client *i2c)
static int __devexit wm9090_i2c_remove(struct i2c_client *i2c)
{
struct wm9090_priv *wm9090 = i2c_get_clientdata(i2c);

Expand Down

0 comments on commit 0d040df

Please sign in to comment.