Skip to content

Commit

Permalink
ALSA: ASoC - Add missing __devexit annotation to wm8350.c
Browse files Browse the repository at this point in the history
Added the missing __devexit annotation to wm8350_codec_remove():
  sound/soc/codecs/wm8350.c:1546: warning: 'wm8350_codec_remove' defined but not used

Signed-off-by: Takashi Iwai <[email protected]>
  • Loading branch information
tiwai committed Dec 20, 2008
1 parent d6f8339 commit a31501d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/soc/codecs/wm8350.c
Original file line number Diff line number Diff line change
Expand Up @@ -1542,7 +1542,7 @@ static int wm8350_codec_probe(struct platform_device *pdev)
return ret;
}

static int wm8350_codec_remove(struct platform_device *pdev)
static int __devexit wm8350_codec_remove(struct platform_device *pdev)
{
struct wm8350 *wm8350 = platform_get_drvdata(pdev);
struct snd_soc_codec *codec = wm8350->codec.codec;
Expand Down

0 comments on commit a31501d

Please sign in to comment.