diff options
author | Shawn Guo <shawn.guo@freescale.com> | 2011-01-19 16:50:38 -0500 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2011-01-31 06:42:12 -0500 |
commit | 1e9cebb42de57f1243261939c77ab5b0f9bcf311 (patch) | |
tree | aaeee8f1f5d9e61e0adc7adb9273558761b3892f /drivers/dma/imx-sdma.c | |
parent | 8a9659114c7be6f88253618252881ea6fe0588b4 (diff) |
dmaengine: imx-sdma: correct sdmac->status in sdma_handle_channel_loop()
sdma_handle_channel_loop() is the handler of cyclic tx. One period
success does not really mean the success of the tx. Instead of
DMA_SUCCESS, DMA_IN_PROGRESS should be the one to tell.
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/dma/imx-sdma.c')
-rw-r--r-- | drivers/dma/imx-sdma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c index f331ae0f7ec3..cf93d1737f1e 100644 --- a/drivers/dma/imx-sdma.c +++ b/drivers/dma/imx-sdma.c | |||
@@ -449,7 +449,7 @@ static void sdma_handle_channel_loop(struct sdma_channel *sdmac) | |||
449 | if (bd->mode.status & BD_RROR) | 449 | if (bd->mode.status & BD_RROR) |
450 | sdmac->status = DMA_ERROR; | 450 | sdmac->status = DMA_ERROR; |
451 | else | 451 | else |
452 | sdmac->status = DMA_SUCCESS; | 452 | sdmac->status = DMA_IN_PROGRESS; |
453 | 453 | ||
454 | bd->mode.status |= BD_DONE; | 454 | bd->mode.status |= BD_DONE; |
455 | sdmac->buf_tail++; | 455 | sdmac->buf_tail++; |