diff options
Diffstat (limited to 'arch/arm/kernel/dma.c')
-rw-r--r-- | arch/arm/kernel/dma.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/arm/kernel/dma.c b/arch/arm/kernel/dma.c index 913fd947528c..3b325ef55a28 100644 --- a/arch/arm/kernel/dma.c +++ b/arch/arm/kernel/dma.c | |||
@@ -248,11 +248,14 @@ int get_dma_residue(dmach_t channel) | |||
248 | return ret; | 248 | return ret; |
249 | } | 249 | } |
250 | 250 | ||
251 | void __init init_dma(void) | 251 | static int __init init_dma(void) |
252 | { | 252 | { |
253 | arch_dma_init(dma_chan); | 253 | arch_dma_init(dma_chan); |
254 | return 0; | ||
254 | } | 255 | } |
255 | 256 | ||
257 | core_initcall(init_dma); | ||
258 | |||
256 | #else | 259 | #else |
257 | 260 | ||
258 | int request_dma(dmach_t channel, const char *device_id) | 261 | int request_dma(dmach_t channel, const char *device_id) |
@@ -276,7 +279,6 @@ GLOBAL_ALIAS(set_dma_count, get_dma_residue); | |||
276 | GLOBAL_ALIAS(__set_dma_addr, get_dma_residue); | 279 | GLOBAL_ALIAS(__set_dma_addr, get_dma_residue); |
277 | GLOBAL_ALIAS(set_dma_sg, get_dma_residue); | 280 | GLOBAL_ALIAS(set_dma_sg, get_dma_residue); |
278 | GLOBAL_ALIAS(set_dma_speed, get_dma_residue); | 281 | GLOBAL_ALIAS(set_dma_speed, get_dma_residue); |
279 | GLOBAL_ALIAS(init_dma, get_dma_residue); | ||
280 | 282 | ||
281 | #endif | 283 | #endif |
282 | 284 | ||