diff options
Diffstat (limited to 'arch/arm/kernel/dma-isa.c')
| -rw-r--r-- | arch/arm/kernel/dma-isa.c | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/arch/arm/kernel/dma-isa.c b/arch/arm/kernel/dma-isa.c index 03532769a97f..0a3e9ad297d8 100644 --- a/arch/arm/kernel/dma-isa.c +++ b/arch/arm/kernel/dma-isa.c | |||
| @@ -143,12 +143,23 @@ static struct dma_ops isa_dma_ops = { | |||
| 143 | .residue = isa_get_dma_residue, | 143 | .residue = isa_get_dma_residue, |
| 144 | }; | 144 | }; |
| 145 | 145 | ||
| 146 | static struct resource dma_resources[] = { | 146 | static struct resource dma_resources[] = { { |
| 147 | { "dma1", 0x0000, 0x000f }, | 147 | .name = "dma1", |
| 148 | { "dma low page", 0x0080, 0x008f }, | 148 | .start = 0x0000, |
| 149 | { "dma2", 0x00c0, 0x00df }, | 149 | .end = 0x000f |
| 150 | { "dma high page", 0x0480, 0x048f } | 150 | }, { |
| 151 | }; | 151 | .name = "dma low page", |
| 152 | .start = 0x0080, | ||
| 153 | .end = 0x008f | ||
| 154 | }, { | ||
| 155 | .name = "dma2", | ||
| 156 | .start = 0x00c0, | ||
| 157 | .end = 0x00df | ||
| 158 | }, { | ||
| 159 | .name = "dma high page", | ||
| 160 | .start = 0x0480, | ||
| 161 | .end = 0x048f | ||
| 162 | } }; | ||
| 152 | 163 | ||
| 153 | void __init isa_init_dma(dma_t *dma) | 164 | void __init isa_init_dma(dma_t *dma) |
| 154 | { | 165 | { |
