diff options
author | Vinod Koul <vinod.koul@intel.com> | 2013-10-16 04:06:54 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2013-10-25 01:45:58 -0400 |
commit | a605c48babb53067b26dae166937763943bf74d7 (patch) | |
tree | 0f2ee4e940819a056b7f662d74f2d884deba6117 | |
parent | ed83c0c8c11b1c9583f29098a3ac906d9a19fe70 (diff) |
dmaengine: jz4740: use DMA_COMPLETE for dma completion status
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>
-rw-r--r-- | drivers/dma/dma-jz4740.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/dma-jz4740.c b/drivers/dma/dma-jz4740.c index b0c0c8268d42..94c380f07538 100644 --- a/drivers/dma/dma-jz4740.c +++ b/drivers/dma/dma-jz4740.c | |||
@@ -491,7 +491,7 @@ static enum dma_status jz4740_dma_tx_status(struct dma_chan *c, | |||
491 | unsigned long flags; | 491 | unsigned long flags; |
492 | 492 | ||
493 | status = dma_cookie_status(c, cookie, state); | 493 | status = dma_cookie_status(c, cookie, state); |
494 | if (status == DMA_SUCCESS || !state) | 494 | if (status == DMA_COMPLETE || !state) |
495 | return status; | 495 | return status; |
496 | 496 | ||
497 | spin_lock_irqsave(&chan->vchan.lock, flags); | 497 | spin_lock_irqsave(&chan->vchan.lock, flags); |