]> Pileus Git - ~andy/linux/commitdiff
dmaengine: s3c24xx-dma: use DMA_COMPLETE for dma completion status
authorSachin Kamat <sachin.kamat@linaro.org>
Thu, 31 Oct 2013 05:18:09 +0000 (10:48 +0530)
committerVinod Koul <vinod.koul@intel.com>
Thu, 28 Nov 2013 07:24:26 +0000 (12:54 +0530)
Use the recently introduced DMA_COMPLETE instead of DMA_SUCCESS.
Without this patch we get the following build error:
drivers/dma/s3c24xx-dma.c: In function ‘s3c24xx_dma_tx_status’:
drivers/dma/s3c24xx-dma.c:798:13: error: ‘DMA_SUCCESS’ undeclared
(first use in this function)

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Acked-by: Heiko Stuebner <heiko@sntech.de>
Acked-by: Kukjin Kim <kgene@kernel.org>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/s3c24xx-dma.c

index 4cb12797863678be86af66017ec2cffb54f5dd16..085da4fe661343a83b61d4bb839f467a6a777a5b 100644 (file)
@@ -795,7 +795,7 @@ static enum dma_status s3c24xx_dma_tx_status(struct dma_chan *chan,
 
        spin_lock_irqsave(&s3cchan->vc.lock, flags);
        ret = dma_cookie_status(chan, cookie, txstate);
-       if (ret == DMA_SUCCESS) {
+       if (ret == DMA_COMPLETE) {
                spin_unlock_irqrestore(&s3cchan->vc.lock, flags);
                return ret;
        }