From: Arnaud Lacombe Date: Tue, 26 Oct 2010 20:04:36 +0000 (-0400) Subject: ASoC: sound/wm9090: add missing __devexit marker X-Git-Tag: v2.6.37-rc1~82^2~1 X-Git-Url: http://git.cascardo.info/?a=commitdiff_plain;ds=sidebyside;h=0d040df9984c8fcb6a777a8f6d5dc513eaefd2de;p=cascardo%2Flinux.git 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 Signed-off-by: Takashi Iwai --- 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, 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);