aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorArnaud Lacombe <lacombar@gmail.com>2010-10-26 16:04:34 -0400
committerTakashi Iwai <tiwai@suse.de>2010-10-27 07:53:17 +0200
commit836f5394061830a9d1ece4aafc437c098774522f (patch)
tree8c54128bfa1696e6664dc22bb0554b0ac1964154 /sound
parente94be5f3628565d0968d668341d9dd468700516d (diff)
ASoC: sound/ad73311: add missing __devexit marker
This fixes the following warning: sound/soc/codecs/ad73311.c:50:12: warning: 'ad73311_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/ad73311.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/ad73311.c b/sound/soc/codecs/ad73311.c
index c53955fe17b..de799cd1ba7 100644
--- a/sound/soc/codecs/ad73311.c
+++ b/sound/soc/codecs/ad73311.c
@@ -47,7 +47,7 @@ static int ad73311_probe(struct platform_device *pdev)
&soc_codec_dev_ad73311, &ad73311_dai, 1);
}
-static int ad73311_remove(struct platform_device *pdev)
+static int __devexit ad73311_remove(struct platform_device *pdev)
{
snd_soc_unregister_codec(&pdev->dev);
return 0;