aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-footbridge/dma.c
diff options
context:
space:
mode:
authorRussell King <rmk@dyn-67.arm.linux.org.uk>2008-12-08 10:58:50 -0500
committerRussell King <rmk+kernel@arm.linux.org.uk>2008-12-08 10:58:50 -0500
commit1df8130278c4543555fea697e5714fbac300b899 (patch)
treecf9ed1b4b76fcdaa9d61ff3dea2e9cbd6396a9e1 /arch/arm/mach-footbridge/dma.c
parentf40b121d983dfc53bde882aadec7f2f0bbcbd1c2 (diff)
[ARM] dma: remove dmach_t typedef
Remove a pointless integer typedef. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-footbridge/dma.c')
-rw-r--r--arch/arm/mach-footbridge/dma.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-footbridge/dma.c b/arch/arm/mach-footbridge/dma.c
index b653e9cfa3f7..e7b8a6adaf7a 100644
--- a/arch/arm/mach-footbridge/dma.c
+++ b/arch/arm/mach-footbridge/dma.c
@@ -20,16 +20,16 @@
20#include <asm/hardware/dec21285.h> 20#include <asm/hardware/dec21285.h>
21 21
22#if 0 22#if 0
23static int fb_dma_request(dmach_t channel, dma_t *dma) 23static int fb_dma_request(unsigned int chan, dma_t *dma)
24{ 24{
25 return -EINVAL; 25 return -EINVAL;
26} 26}
27 27
28static void fb_dma_enable(dmach_t channel, dma_t *dma) 28static void fb_dma_enable(unsigned int chan, dma_t *dma)
29{ 29{
30} 30}
31 31
32static void fb_dma_disable(dmach_t channel, dma_t *dma) 32static void fb_dma_disable(unsigned int chan, dma_t *dma)
33{ 33{
34} 34}
35 35