mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-27 01:11:31 +00:00
dmaengine: ti: k3-udma: Fix the running channel handling in alloc_chan_resources
In the unlikely case when the channel is running (RT enabled) during alloc_chan_resources then we should use udma_reset_chan() and not udma_stop() as the later is trying to initiate a teardown on the channel, which is not valid at this point. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Link: https://lore.kernel.org/r/20200527070612.636-3-peter.ujfalusi@ti.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
This commit is contained in:
parent
5a9377cc74
commit
b5b0180c2f
1 changed files with 1 additions and 1 deletions
|
|
@ -1848,7 +1848,7 @@ static int udma_alloc_chan_resources(struct dma_chan *chan)
|
|||
|
||||
if (udma_is_chan_running(uc)) {
|
||||
dev_warn(ud->dev, "chan%d: is running!\n", uc->id);
|
||||
udma_stop(uc);
|
||||
udma_reset_chan(uc, false);
|
||||
if (udma_is_chan_running(uc)) {
|
||||
dev_err(ud->dev, "chan%d: won't stop!\n", uc->id);
|
||||
ret = -EBUSY;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue