Skip to content

Commit

Permalink
ASoC: sound/ad73311: add missing __devexit marker
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Arnaud Lacombe authored and Takashi Iwai committed Oct 27, 2010
1 parent e94be5f commit 836f539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/codecs/ad73311.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 836f539

Please sign in to comment.