Commit a6af47ae authored by Xiubo Li's avatar Xiubo Li Committed by Mark Brown

ASoC: fsl-sai: Remove fsl_sai_remove()

There is no need of this function and makes the code slightly shorter
Signed-off-by: default avatarXiubo Li <Li.Xiubo@freescale.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent b6344859
......@@ -385,19 +385,8 @@ static int fsl_sai_dai_probe(struct snd_soc_dai *cpu_dai)
return 0;
}
static int fsl_sai_dai_remove(struct snd_soc_dai *cpu_dai)
{
cpu_dai->playback_dma_data = NULL;
cpu_dai->capture_dma_data = NULL;
snd_soc_dai_set_drvdata(cpu_dai, NULL);
return 0;
}
static struct snd_soc_dai_driver fsl_sai_dai = {
.probe = fsl_sai_dai_probe,
.remove = fsl_sai_dai_remove,
.playback = {
.channels_min = 1,
.channels_max = 2,
......
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