Skip to content

Commit

Permalink
dmaengine: txx9: use DMA_COMPLETE for dma completion status
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Vinod Koul committed Oct 25, 2013
1 parent 00d696f commit 8f1fd11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/dma/txx9dmac.c
Original file line number Diff line number Diff line change
Expand Up @@ -962,8 +962,8 @@ txx9dmac_tx_status(struct dma_chan *chan, dma_cookie_t cookie,
enum dma_status ret;

ret = dma_cookie_status(chan, cookie, txstate);
if (ret == DMA_SUCCESS)
return DMA_SUCCESS;
if (ret == DMA_COMPLETE)
return DMA_COMPLETE;

spin_lock_bh(&dc->lock);
txx9dmac_scan_descriptors(dc);
Expand Down

0 comments on commit 8f1fd11

Please sign in to comment.