summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/include
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2010-06-03 17:41:52 -0700
committerGary King <gking@nvidia.com>2010-06-09 09:00:30 -0700
commit0583228a659ba44cec16d2b97167ee536b375a30 (patch)
tree81d0690b4aed1fc14b0ce536a8ad8754df198df7 /arch/arm/mach-tegra/include
parent95ad71e06c0e129f2c587f28beb052936d19cf78 (diff)
[ARM] tegra: dma: Drop err argument to dma callbacks
Change-Id: I78359ccf3defc70e623735925d423cb048f68075 Signed-off-by: Colin Cross <ccross@android.com> Reviewed-on: http://git-master/r/2286 Reviewed-by: Gary King <gking@nvidia.com> Tested-by: Gary King <gking@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/include')
-rw-r--r--arch/arm/mach-tegra/include/mach/dma.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/include/mach/dma.h b/arch/arm/mach-tegra/include/mach/dma.h
index 8002b1a2d728..a088b000ac48 100644
--- a/arch/arm/mach-tegra/include/mach/dma.h
+++ b/arch/arm/mach-tegra/include/mach/dma.h
@@ -86,7 +86,7 @@ struct tegra_dma_req {
* no DMA requests queued up, then it will STOP the DMA. It there are
* more requests in the DMA, then it will queue the next request.
*/
- void (*complete)(struct tegra_dma_req *req, int err);
+ void (*complete)(struct tegra_dma_req *req);
/* This is a called from the DMA ISR context when the DMA is still in
* progress and is actively filling same buffer.
@@ -105,7 +105,7 @@ struct tegra_dma_req {
* callback to program the next buffer.
*
*/
- void (*threshold)(struct tegra_dma_req *req, int err);
+ void (*threshold)(struct tegra_dma_req *req);
/* 1 to copy to memory.
* 0 to copy from the memory to device FIFO */