From: Mark Brown Date: Wed, 30 May 2012 12:20:17 +0000 (+0100) Subject: ASoC: ac97: Remove empty remove() function X-Git-Tag: v3.6-rc1~17^2~11^2~124 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0561c1bf354c4a8230a1e0ada43362f54e60b2f0;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git ASoC: ac97: Remove empty remove() function Signed-off-by: Mark Brown --- diff --git a/sound/soc/codecs/ac97.c b/sound/soc/codecs/ac97.c index 2023c74..ea06b83 100644 --- a/sound/soc/codecs/ac97.c +++ b/sound/soc/codecs/ac97.c @@ -91,11 +91,6 @@ static int ac97_soc_probe(struct snd_soc_codec *codec) return 0; } -static int ac97_soc_remove(struct snd_soc_codec *codec) -{ - return 0; -} - #ifdef CONFIG_PM static int ac97_soc_suspend(struct snd_soc_codec *codec) { @@ -119,7 +114,6 @@ static struct snd_soc_codec_driver soc_codec_dev_ac97 = { .write = ac97_write, .read = ac97_read, .probe = ac97_soc_probe, - .remove = ac97_soc_remove, .suspend = ac97_soc_suspend, .resume = ac97_soc_resume, };