Add dma_debug_init() for ia64

The commit 9916219579d078c80377dd3988c2cc213536d868 was supposed to
add CONFIG_DMA_API_DEBUG support to IA64 however I forgot to add
dma_debug_init().

Signed-off-by: fujita <fujita@tulip.osrg.net>
Acked-by: Fenghua Yu <fenghua.yu@intel.com>

authored by fujita and committed by Fenghua Yu 390bd132 6f409461

+8
+8
arch/ia64/kernel/dma-mapping.c
··· 6 6 struct dma_map_ops *dma_ops; 7 7 EXPORT_SYMBOL(dma_ops); 8 8 9 + #define PREALLOC_DMA_DEBUG_ENTRIES (1 << 16) 10 + 11 + static int __init dma_init(void) 12 + { 13 + dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES); 14 + } 15 + fs_initcall(dma_init); 16 + 9 17 struct dma_map_ops *dma_get_ops(struct device *dev) 10 18 { 11 19 return dma_ops;