]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ASoC: qcom: ipq806x: add error in dma allocation.
authorSrinivas Kandagatla <srinivas.kandagatla@linaro.org>
Thu, 11 Feb 2016 12:17:45 +0000 (12:17 +0000)
committerMark Brown <broonie@kernel.org>
Fri, 19 Feb 2016 16:20:18 +0000 (01:20 +0900)
ipq806x is only ever tested for playback so return error in dma allocation
if the stream direction is capture.

Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Acked-by: Kenneth Westfield <kwestfie@codeaurora.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/qcom/lpass-ipq806x.c

index 119048c016eca5642039822c5abfea3df79ab78f..29a35296d8da4bb3211fd1deb998c88f42e56fd7 100644 (file)
@@ -65,7 +65,10 @@ static struct snd_soc_dai_driver ipq806x_lpass_cpu_dai_driver = {
 
 static int ipq806x_lpass_alloc_dma_channel(struct lpass_data *drvdata, int dir)
 {
-       return IPQ806X_LPAIF_RDMA_CHAN_MI2S;
+       if (dir == SNDRV_PCM_STREAM_PLAYBACK)
+               return IPQ806X_LPAIF_RDMA_CHAN_MI2S;
+       else    /* Capture currently not implemented */
+               return -EINVAL;
 }
 
 static int ipq806x_lpass_free_dma_channel(struct lpass_data *drvdata, int chan)