dmaengine: edma: use DMA_COMPLETE for dma completion status
Tested-by: Joel Fernandes <joelf@ti.com> Acked-by: Dan Williams <dan.j.williams@intel.com> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
This commit is contained in:
parent
2c40410b87
commit
9d386ec590
|
@ -576,7 +576,7 @@ static enum dma_status edma_tx_status(struct dma_chan *chan,
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
ret = dma_cookie_status(chan, cookie, txstate);
|
ret = dma_cookie_status(chan, cookie, txstate);
|
||||||
if (ret == DMA_SUCCESS || !txstate)
|
if (ret == DMA_COMPLETE || !txstate)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
spin_lock_irqsave(&echan->vchan.lock, flags);
|
spin_lock_irqsave(&echan->vchan.lock, flags);
|
||||||
|
|
Loading…
Reference in New Issue