diff options
author | Arnaud Lacombe <lacombar@gmail.com> | 2010-10-26 16:04:36 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-10-27 07:53:43 +0200 |
commit | 0d040df9984c8fcb6a777a8f6d5dc513eaefd2de (patch) | |
tree | c44fa51d9959414ffcef81eeb9b36110072d2888 /sound | |
parent | f3607aef0d3370ae9edbfecfc7182233397cb0aa (diff) | |
download | op-kernel-dev-0d040df9984c8fcb6a777a8f6d5dc513eaefd2de.zip op-kernel-dev-0d040df9984c8fcb6a777a8f6d5dc513eaefd2de.tar.gz |
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')
-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 7a18254..99c046b 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); |