aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/adi
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2014-01-11 08:02:20 -0500
committerMark Brown <broonie@linaro.org>2014-01-14 16:28:39 -0500
commit153e66f5136bc5b33db253ad2db011177196626e (patch)
tree7a8e2fffc671c704615f5971fdca469711d9fd65 /sound/soc/adi
parent478028e088d6a94666d8a776be2cd2291faf3bbd (diff)
ASoC: axi-{spdif,i2s}: Remove SND_DMAENGINE_PCM_FLAG_NO_RESIDUE flag
The pl330 driver properly reports that it does not have residue reporting support, which means the PCM dmanegine driver is able to figure this out on its own. So there is no need to set the flag manually. Removing the flag has the advantage that once the pl330 driver gains support for residue reporting it will automatically be used by the generic dmaengine PCM driver. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/adi')
-rw-r--r--sound/soc/adi/axi-i2s.c3
-rw-r--r--sound/soc/adi/axi-spdif.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/sound/soc/adi/axi-i2s.c b/sound/soc/adi/axi-i2s.c
index 7f91a86dd734..6058c1fd5070 100644
--- a/sound/soc/adi/axi-i2s.c
+++ b/sound/soc/adi/axi-i2s.c
@@ -236,8 +236,7 @@ static int axi_i2s_probe(struct platform_device *pdev)
236 if (ret) 236 if (ret)
237 goto err_clk_disable; 237 goto err_clk_disable;
238 238
239 ret = devm_snd_dmaengine_pcm_register(&pdev->dev, NULL, 239 ret = devm_snd_dmaengine_pcm_register(&pdev->dev, NULL, 0);
240 SND_DMAENGINE_PCM_FLAG_NO_RESIDUE);
241 if (ret) 240 if (ret)
242 goto err_clk_disable; 241 goto err_clk_disable;
243 242
diff --git a/sound/soc/adi/axi-spdif.c b/sound/soc/adi/axi-spdif.c
index 8db7a9920695..198e3a4640f6 100644
--- a/sound/soc/adi/axi-spdif.c
+++ b/sound/soc/adi/axi-spdif.c
@@ -229,8 +229,7 @@ static int axi_spdif_probe(struct platform_device *pdev)
229 if (ret) 229 if (ret)
230 goto err_clk_disable; 230 goto err_clk_disable;
231 231
232 ret = devm_snd_dmaengine_pcm_register(&pdev->dev, NULL, 232 ret = devm_snd_dmaengine_pcm_register(&pdev->dev, NULL, 0);
233 SND_DMAENGINE_PCM_FLAG_NO_RESIDUE);
234 if (ret) 233 if (ret)
235 goto err_clk_disable; 234 goto err_clk_disable;
236 235