summaryrefslogtreecommitdiffstats
path: root/sound/soc/soc-generic-dmaengine-pcm.c
diff options
context:
space:
mode:
authorShawn Guo2013-04-22 15:48:45 +0200
committerMark Brown2013-04-23 12:34:09 +0200
commit19133d2cfd9d6ad8365d94137dcd3e18f760c8e2 (patch)
tree4ab402647258a2280b57f7b1b786ea6a3848a7f8 /sound/soc/soc-generic-dmaengine-pcm.c
parentASoC: mxs: Use generic dmaengine PCM (diff)
downloadkernel-qcow2-linux-19133d2cfd9d6ad8365d94137dcd3e18f760c8e2.tar.gz
kernel-qcow2-linux-19133d2cfd9d6ad8365d94137dcd3e18f760c8e2.tar.xz
kernel-qcow2-linux-19133d2cfd9d6ad8365d94137dcd3e18f760c8e2.zip
ASoC: generic-dmaengine-pcm: use a more common dma name
The examples in Documentation/devicetree/bindings/dma/dma.txt recommends the name for dma channel doing both RX and TX to be "rx-tx". This becomes a common pattern that has been adopted by platforms that converts to generic DMA bindings. Let's follow this common pattern in generic-dmaengine-pcm. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Acked-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/soc-generic-dmaengine-pcm.c')
-rw-r--r--sound/soc/soc-generic-dmaengine-pcm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/soc-generic-dmaengine-pcm.c b/sound/soc/soc-generic-dmaengine-pcm.c
index 5fd5ed4c0a96..98e131037fd8 100644
--- a/sound/soc/soc-generic-dmaengine-pcm.c
+++ b/sound/soc/soc-generic-dmaengine-pcm.c
@@ -227,7 +227,7 @@ static void dmaengine_pcm_request_chan_of(struct dmaengine_pcm *pcm,
return;
if (pcm->flags & SND_DMAENGINE_PCM_FLAG_HALF_DUPLEX) {
- pcm->chan[0] = of_dma_request_slave_channel(of_node, "tx_rx");
+ pcm->chan[0] = of_dma_request_slave_channel(of_node, "rx-tx");
pcm->chan[1] = pcm->chan[0];
} else {
for (i = SNDRV_PCM_STREAM_PLAYBACK; i <= SNDRV_PCM_STREAM_CAPTURE; i++) {