diff options
author | Russell King - ARM Linux <linux@arm.linux.org.uk> | 2012-03-06 17:35:07 -0500 |
---|---|---|
committer | Vinod Koul <vinod.koul@linux.intel.com> | 2012-03-13 02:07:01 -0400 |
commit | f7fbce07c6ce26a25b4e0cb5f241c361fde87901 (patch) | |
tree | 66e6321b5ef49e18479ffeb1ed4fd5169e120f97 /drivers/dma/pl330.c | |
parent | 884485e1f12dcd39390f042e772cdbefc9ebb750 (diff) |
dmaengine: provide a common function for completing a dma descriptor
Provide a common function to do the cookie mechanics for completing
a DMA descriptor.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Tested-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Jassi Brar <jassisinghbrar@gmail.com>
[imx-sdma.c & mxs-dma.c]
Tested-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
Diffstat (limited to 'drivers/dma/pl330.c')
-rw-r--r-- | drivers/dma/pl330.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/pl330.c b/drivers/dma/pl330.c index 644eb789958b..a81d0a5f8191 100644 --- a/drivers/dma/pl330.c +++ b/drivers/dma/pl330.c | |||
@@ -233,7 +233,7 @@ static void pl330_tasklet(unsigned long data) | |||
233 | /* Pick up ripe tomatoes */ | 233 | /* Pick up ripe tomatoes */ |
234 | list_for_each_entry_safe(desc, _dt, &pch->work_list, node) | 234 | list_for_each_entry_safe(desc, _dt, &pch->work_list, node) |
235 | if (desc->status == DONE) { | 235 | if (desc->status == DONE) { |
236 | pch->chan.completed_cookie = desc->txd.cookie; | 236 | dma_cookie_complete(&desc->txd); |
237 | list_move_tail(&desc->node, &list); | 237 | list_move_tail(&desc->node, &list); |
238 | } | 238 | } |
239 | 239 | ||