diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2019-11-13 11:54:45 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-11-15 12:03:16 +0000 |
commit | f0c97131b946fe77e22eddbd7e7d92fb6459f497 (patch) | |
tree | 2f094ba1eb699a5d4514e8a38a2f1f07d0dcc7e8 /sound | |
parent | de8cf95231102f0b1d71499b89c93902c9bb7908 (diff) | |
download | blackbird-op-linux-f0c97131b946fe77e22eddbd7e7d92fb6459f497.tar.gz blackbird-op-linux-f0c97131b946fe77e22eddbd7e7d92fb6459f497.zip |
ASoC: ti: davinci-mcasp: 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-3-peter.ujfalusi@ti.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/ti/davinci-mcasp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/ti/davinci-mcasp.c b/sound/soc/ti/davinci-mcasp.c index 7aa3c32e4a49..8e5371801d88 100644 --- a/sound/soc/ti/davinci-mcasp.c +++ b/sound/soc/ti/davinci-mcasp.c @@ -1867,7 +1867,7 @@ static int davinci_mcasp_get_dma_type(struct davinci_mcasp *mcasp) return PCM_EDMA; tmp = mcasp->dma_data[SNDRV_PCM_STREAM_PLAYBACK].filter_data; - chan = dma_request_slave_channel_reason(mcasp->dev, tmp); + chan = dma_request_chan(mcasp->dev, tmp); if (IS_ERR(chan)) { if (PTR_ERR(chan) != -EPROBE_DEFER) dev_err(mcasp->dev, |