Commit f0ffc816 authored by Russell King's avatar Russell King Committed by Russell King

[ARM] dma: remove dmamode_t typedef

Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 4e57ea9a
...@@ -21,11 +21,6 @@ ...@@ -21,11 +21,6 @@
#include <mach/isa-dma.h> #include <mach/isa-dma.h>
/*
* DMA modes
*/
typedef unsigned int dmamode_t;
/* /*
* The DMA modes reflect the settings for the ISA DMA controller * The DMA modes reflect the settings for the ISA DMA controller
*/ */
...@@ -125,7 +120,7 @@ extern void set_dma_count(unsigned int chan, unsigned long count); ...@@ -125,7 +120,7 @@ extern void set_dma_count(unsigned int chan, unsigned long count);
* DMA transfer direction immediately, but defer it to the * DMA transfer direction immediately, but defer it to the
* enable_dma(). * enable_dma().
*/ */
extern void set_dma_mode(unsigned int chan, dmamode_t mode); extern void set_dma_mode(unsigned int chan, unsigned int mode);
/* Set the transfer speed for this channel /* Set the transfer speed for this channel
*/ */
......
...@@ -34,7 +34,7 @@ struct dma_struct { ...@@ -34,7 +34,7 @@ struct dma_struct {
unsigned int active:1; /* Transfer active */ unsigned int active:1; /* Transfer active */
unsigned int invalid:1; /* Address/Count changed */ unsigned int invalid:1; /* Address/Count changed */
dmamode_t dma_mode; /* DMA mode */ unsigned int dma_mode; /* DMA mode */
int speed; /* DMA speed */ int speed; /* DMA speed */
unsigned int lock; /* Device is allocated */ unsigned int lock; /* Device is allocated */
......
...@@ -171,7 +171,7 @@ EXPORT_SYMBOL(set_dma_count); ...@@ -171,7 +171,7 @@ EXPORT_SYMBOL(set_dma_count);
/* Set DMA direction mode /* Set DMA direction mode
*/ */
void set_dma_mode (unsigned int chan, dmamode_t mode) void set_dma_mode (unsigned int chan, unsigned int mode)
{ {
dma_t *dma = dma_channel(chan); dma_t *dma = dma_channel(chan);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment