Commit 0561c1bf authored by Mark Brown's avatar Mark Brown

ASoC: ac97: Remove empty remove() function

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 14a95fe8
...@@ -91,11 +91,6 @@ static int ac97_soc_probe(struct snd_soc_codec *codec) ...@@ -91,11 +91,6 @@ static int ac97_soc_probe(struct snd_soc_codec *codec)
return 0; return 0;
} }
static int ac97_soc_remove(struct snd_soc_codec *codec)
{
return 0;
}
#ifdef CONFIG_PM #ifdef CONFIG_PM
static int ac97_soc_suspend(struct snd_soc_codec *codec) static int ac97_soc_suspend(struct snd_soc_codec *codec)
{ {
...@@ -119,7 +114,6 @@ static struct snd_soc_codec_driver soc_codec_dev_ac97 = { ...@@ -119,7 +114,6 @@ static struct snd_soc_codec_driver soc_codec_dev_ac97 = {
.write = ac97_write, .write = ac97_write,
.read = ac97_read, .read = ac97_read,
.probe = ac97_soc_probe, .probe = ac97_soc_probe,
.remove = ac97_soc_remove,
.suspend = ac97_soc_suspend, .suspend = ac97_soc_suspend,
.resume = ac97_soc_resume, .resume = ac97_soc_resume,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment