diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-02-05 01:30:26 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 12:44:24 -0500 |
commit | a3b2004a2671455ee7aef1d9aee5a24381999ddb (patch) | |
tree | 046d7e755e2a30a1c5d54de383362ca04220cd36 /arch/m68k/atari/stdma.c | |
parent | 8b169fa2c942bc2a579da3f33986bd3fc48d9684 (diff) |
m68k: kill arch/m68k/atari/atari_ksyms.c
EXPORT_SYMBOL's belong to the actual code.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/m68k/atari/stdma.c')
-rw-r--r-- | arch/m68k/atari/stdma.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/m68k/atari/stdma.c b/arch/m68k/atari/stdma.c index ab3fd5202b24..d1bd029a34ac 100644 --- a/arch/m68k/atari/stdma.c +++ b/arch/m68k/atari/stdma.c | |||
@@ -35,6 +35,7 @@ | |||
35 | #include <linux/init.h> | 35 | #include <linux/init.h> |
36 | #include <linux/interrupt.h> | 36 | #include <linux/interrupt.h> |
37 | #include <linux/wait.h> | 37 | #include <linux/wait.h> |
38 | #include <linux/module.h> | ||
38 | 39 | ||
39 | #include <asm/atari_stdma.h> | 40 | #include <asm/atari_stdma.h> |
40 | #include <asm/atariints.h> | 41 | #include <asm/atariints.h> |
@@ -91,6 +92,7 @@ void stdma_lock(irq_handler_t handler, void *data) | |||
91 | stdma_isr_data = data; | 92 | stdma_isr_data = data; |
92 | local_irq_restore(flags); | 93 | local_irq_restore(flags); |
93 | } | 94 | } |
95 | EXPORT_SYMBOL(stdma_lock); | ||
94 | 96 | ||
95 | 97 | ||
96 | /* | 98 | /* |
@@ -117,6 +119,7 @@ void stdma_release(void) | |||
117 | 119 | ||
118 | local_irq_restore(flags); | 120 | local_irq_restore(flags); |
119 | } | 121 | } |
122 | EXPORT_SYMBOL(stdma_release); | ||
120 | 123 | ||
121 | 124 | ||
122 | /* | 125 | /* |
@@ -134,6 +137,7 @@ int stdma_others_waiting(void) | |||
134 | { | 137 | { |
135 | return waitqueue_active(&stdma_wait); | 138 | return waitqueue_active(&stdma_wait); |
136 | } | 139 | } |
140 | EXPORT_SYMBOL(stdma_others_waiting); | ||
137 | 141 | ||
138 | 142 | ||
139 | /* | 143 | /* |
@@ -155,6 +159,7 @@ int stdma_islocked(void) | |||
155 | { | 159 | { |
156 | return stdma_locked; | 160 | return stdma_locked; |
157 | } | 161 | } |
162 | EXPORT_SYMBOL(stdma_islocked); | ||
158 | 163 | ||
159 | 164 | ||
160 | /* | 165 | /* |