diff options
author | Arnaud Lacombe <lacombar@gmail.com> | 2010-10-26 16:04:34 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-10-27 01:53:17 -0400 |
commit | 836f5394061830a9d1ece4aafc437c098774522f (patch) | |
tree | 8c54128bfa1696e6664dc22bb0554b0ac1964154 /sound | |
parent | e94be5f3628565d0968d668341d9dd468700516d (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/ad73311.c b/sound/soc/codecs/ad73311.c index c53955fe17b6..de799cd1ba72 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) | |||
47 | &soc_codec_dev_ad73311, &ad73311_dai, 1); | 47 | &soc_codec_dev_ad73311, &ad73311_dai, 1); |
48 | } | 48 | } |
49 | 49 | ||
50 | static int ad73311_remove(struct platform_device *pdev) | 50 | static int __devexit ad73311_remove(struct platform_device *pdev) |
51 | { | 51 | { |
52 | snd_soc_unregister_codec(&pdev->dev); | 52 | snd_soc_unregister_codec(&pdev->dev); |
53 | return 0; | 53 | return 0; |