diff options
author | Arnaud Lacombe <lacombar@gmail.com> | 2010-10-26 16:04:36 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-10-27 01:53:43 -0400 |
commit | 0d040df9984c8fcb6a777a8f6d5dc513eaefd2de (patch) | |
tree | c44fa51d9959414ffcef81eeb9b36110072d2888 /sound/soc/codecs/wm9090.c | |
parent | f3607aef0d3370ae9edbfecfc7182233397cb0aa (diff) |
ASoC: sound/wm9090: add missing __devexit marker
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>
Diffstat (limited to 'sound/soc/codecs/wm9090.c')
-rw-r--r-- | sound/soc/codecs/wm9090.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/wm9090.c b/sound/soc/codecs/wm9090.c index 7a1825418ee4..99c046ba46bb 100644 --- a/sound/soc/codecs/wm9090.c +++ b/sound/soc/codecs/wm9090.c | |||
@@ -665,7 +665,7 @@ static int wm9090_i2c_probe(struct i2c_client *i2c, | |||
665 | return ret; | 665 | return ret; |
666 | } | 666 | } |
667 | 667 | ||
668 | static int wm9090_i2c_remove(struct i2c_client *i2c) | 668 | static int __devexit wm9090_i2c_remove(struct i2c_client *i2c) |
669 | { | 669 | { |
670 | struct wm9090_priv *wm9090 = i2c_get_clientdata(i2c); | 670 | struct wm9090_priv *wm9090 = i2c_get_clientdata(i2c); |
671 | 671 | ||