diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-10-27 04:07:45 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-10-27 04:07:45 -0400 |
commit | 94c285108e4551157ecc1b8156921712138fa860 (patch) | |
tree | 5eed34d9e097a81542c8c640b19fb264d071518a /arch/sh/mm/consistent.c | |
parent | 4c978ca3194a4002407a85b15122f793efc8616b (diff) |
sh: Bump up dma_ops initialization far earlier in the boot process.
Presently this was tacked on to the dma debug init bits from
fs_initcall(), which is far too late for devices setting up their own
per-device coherent areas.
Throw this in the beginning of mem_init(), as per the x86 iommu
allocation.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/mm/consistent.c')
-rw-r--r-- | arch/sh/mm/consistent.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/sh/mm/consistent.c b/arch/sh/mm/consistent.c index ef20bbabefa0..902967e3f841 100644 --- a/arch/sh/mm/consistent.c +++ b/arch/sh/mm/consistent.c | |||
@@ -27,8 +27,6 @@ EXPORT_SYMBOL(dma_ops); | |||
27 | static int __init dma_init(void) | 27 | static int __init dma_init(void) |
28 | { | 28 | { |
29 | dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES); | 29 | dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES); |
30 | |||
31 | no_iommu_init(); | ||
32 | return 0; | 30 | return 0; |
33 | } | 31 | } |
34 | fs_initcall(dma_init); | 32 | fs_initcall(dma_init); |