diff options
author | Vinod Koul <vinod.koul@intel.com> | 2013-10-16 20:52:38 +0530 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2013-10-25 11:16:12 +0530 |
commit | 5738992b078140267f6637f9f929ec7581f6213e (patch) | |
tree | 793eea38c18b6541de757030bea662dd7babfa89 | |
parent | 7cce5083b738e3e693abe082d9958686bcb88d32 (diff) | |
download | op-kernel-dev-5738992b078140267f6637f9f929ec7581f6213e.zip op-kernel-dev-5738992b078140267f6637f9f929ec7581f6213e.tar.gz |
dmaengine: ppc4xx: 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/ppc4xx/adma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/ppc4xx/adma.c b/drivers/dma/ppc4xx/adma.c index 370ff82..60e02ae 100644 --- a/drivers/dma/ppc4xx/adma.c +++ b/drivers/dma/ppc4xx/adma.c @@ -3891,7 +3891,7 @@ static enum dma_status ppc440spe_adma_tx_status(struct dma_chan *chan, ppc440spe_chan = to_ppc440spe_adma_chan(chan); ret = dma_cookie_status(chan, cookie, txstate); - if (ret == DMA_SUCCESS) + if (ret == DMA_COMPLETE) return ret; ppc440spe_adma_slot_cleanup(ppc440spe_chan); |