diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2019-11-13 11:54:44 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-11-15 12:02:58 +0000 |
commit | de8cf95231102f0b1d71499b89c93902c9bb7908 (patch) | |
tree | 08a1a206489ab1e83485835c46a4a835d87a287a /sound | |
parent | ce21401c9d30e81824e864dc25824ebeb9690801 (diff) | |
download | linux-stable-de8cf95231102f0b1d71499b89c93902c9bb7908.tar.gz linux-stable-de8cf95231102f0b1d71499b89c93902c9bb7908.tar.bz2 linux-stable-de8cf95231102f0b1d71499b89c93902c9bb7908.zip |
ASoC: dmaengine: Use dma_request_chan() directly for channel request
dma_request_slave_channel_reason() is:
#define dma_request_slave_channel_reason(dev, name) \
dma_request_chan(dev, name)
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Link: https://lore.kernel.org/r/20191113095445.3211-2-peter.ujfalusi@ti.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/soc-generic-dmaengine-pcm.c | 2 |
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 f4c755209e03..a428ff393ea2 100644 --- a/sound/soc/soc-generic-dmaengine-pcm.c +++ b/sound/soc/soc-generic-dmaengine-pcm.c @@ -387,7 +387,7 @@ static int dmaengine_pcm_request_chan_of(struct dmaengine_pcm *pcm, name = dmaengine_pcm_dma_channel_names[i]; if (config && config->chan_names[i]) name = config->chan_names[i]; - chan = dma_request_slave_channel_reason(dev, name); + chan = dma_request_chan(dev, name); if (IS_ERR(chan)) { if (PTR_ERR(chan) == -EPROBE_DEFER) return -EPROBE_DEFER; |