ASoC: fsl-sai: Remove fsl_sai_remove()
authorXiubo Li <Li.Xiubo@freescale.com>
Fri, 20 Dec 2013 04:17:38 +0000 (12:17 +0800)
committerMark Brown <broonie@linaro.org>
Sat, 21 Dec 2013 14:33:10 +0000 (14:33 +0000)
There is no need of this function and makes the code slightly shorter

Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
sound/soc/fsl/fsl_sai.c

index 50a797e..1868ec3 100644 (file)
@@ -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,