diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2014-08-19 19:48:06 +0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-08-19 20:40:11 +0400 |
commit | 5d0ecb0e7dd53e61e034bac8508d7601b04e679d (patch) | |
tree | a11d8469ed66c2766cae425688152b3222438d8f /sound/soc/sh/siu_pcm.c | |
parent | 6c7d1dfca999f58c65ed7b10c2f0945dd92db103 (diff) | |
download | linux-5d0ecb0e7dd53e61e034bac8508d7601b04e679d.tar.xz |
ASoC: sh: Don't opencode DMAengine API calls
Use the proper wrapper functions instead of directly calling the DMAengine
callback functions.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'sound/soc/sh/siu_pcm.c')
-rw-r--r-- | sound/soc/sh/siu_pcm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/sh/siu_pcm.c b/sound/soc/sh/siu_pcm.c index 488f9becb44f..32eb6da2d2bd 100644 --- a/sound/soc/sh/siu_pcm.c +++ b/sound/soc/sh/siu_pcm.c @@ -139,7 +139,7 @@ static int siu_pcm_wr_set(struct siu_port *port_info, desc->callback = siu_dma_tx_complete; desc->callback_param = siu_stream; - cookie = desc->tx_submit(desc); + cookie = dmaengine_submit(desc); if (cookie < 0) { dev_err(dev, "Failed to submit a dma transfer\n"); return cookie; @@ -189,7 +189,7 @@ static int siu_pcm_rd_set(struct siu_port *port_info, desc->callback = siu_dma_tx_complete; desc->callback_param = siu_stream; - cookie = desc->tx_submit(desc); + cookie = dmaengine_submit(desc); if (cookie < 0) { dev_err(dev, "Failed to submit dma descriptor\n"); return cookie; |