Commit 836f5394061830a9d1ece4aafc437c098774522f

Authored by Arnaud Lacombe
Committed by Takashi Iwai
1 parent e94be5f362

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

sound/soc/codecs/ad73311.c
... ... @@ -47,7 +47,7 @@
47 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 52 snd_soc_unregister_codec(&pdev->dev);
53 53 return 0;