diff options
Diffstat (limited to 'arch/m68k')
-rw-r--r-- | arch/m68k/kernel/m68k_ksyms_no.c | 12 | ||||
-rw-r--r-- | arch/m68k/platform/coldfire/dma.c | 3 |
2 files changed, 3 insertions, 12 deletions
diff --git a/arch/m68k/kernel/m68k_ksyms_no.c b/arch/m68k/kernel/m68k_ksyms_no.c index 11effaa6d158..db6f87aa0a7f 100644 --- a/arch/m68k/kernel/m68k_ksyms_no.c +++ b/arch/m68k/kernel/m68k_ksyms_no.c | |||
@@ -42,15 +42,3 @@ EXPORT_SYMBOL(__mulsi3); | |||
42 | EXPORT_SYMBOL(__udivsi3); | 42 | EXPORT_SYMBOL(__udivsi3); |
43 | EXPORT_SYMBOL(__umodsi3); | 43 | EXPORT_SYMBOL(__umodsi3); |
44 | 44 | ||
45 | #ifdef CONFIG_COLDFIRE | ||
46 | extern unsigned int *dma_device_address; | ||
47 | extern unsigned long dma_base_addr, _ramend; | ||
48 | EXPORT_SYMBOL(dma_base_addr); | ||
49 | EXPORT_SYMBOL(dma_device_address); | ||
50 | EXPORT_SYMBOL(_ramend); | ||
51 | |||
52 | extern asmlinkage void trap(void); | ||
53 | extern void *_ramvec; | ||
54 | EXPORT_SYMBOL(trap); | ||
55 | EXPORT_SYMBOL(_ramvec); | ||
56 | #endif /* CONFIG_COLDFIRE */ | ||
diff --git a/arch/m68k/platform/coldfire/dma.c b/arch/m68k/platform/coldfire/dma.c index e88b95e2cc62..df5ce20d181c 100644 --- a/arch/m68k/platform/coldfire/dma.c +++ b/arch/m68k/platform/coldfire/dma.c | |||
@@ -9,6 +9,7 @@ | |||
9 | /***************************************************************************/ | 9 | /***************************************************************************/ |
10 | 10 | ||
11 | #include <linux/kernel.h> | 11 | #include <linux/kernel.h> |
12 | #include <linux/module.h> | ||
12 | #include <asm/dma.h> | 13 | #include <asm/dma.h> |
13 | #include <asm/coldfire.h> | 14 | #include <asm/coldfire.h> |
14 | #include <asm/mcfsim.h> | 15 | #include <asm/mcfsim.h> |
@@ -33,7 +34,9 @@ unsigned int dma_base_addr[MAX_M68K_DMA_CHANNELS] = { | |||
33 | MCFDMA_BASE3, | 34 | MCFDMA_BASE3, |
34 | #endif | 35 | #endif |
35 | }; | 36 | }; |
37 | EXPORT_SYMBOL(dma_base_addr); | ||
36 | 38 | ||
37 | unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; | 39 | unsigned int dma_device_address[MAX_M68K_DMA_CHANNELS]; |
40 | EXPORT_SYMBOL(dma_device_address); | ||
38 | 41 | ||
39 | /***************************************************************************/ | 42 | /***************************************************************************/ |