diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2006-10-11 12:40:22 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-11 14:17:07 -0400 |
commit | cff52daffa080eff6353f44df418b080dacefb96 (patch) | |
tree | 57745a059733794b7e48dd45d459b0a97385fc67 /arch/alpha/kernel/irq_alpha.c | |
parent | 9ab6a45394715918b025f2d3b799477295af4cc0 (diff) |
[PATCH] alpha_ksyms.c cleanup
taken exports to actual definitions of symbols being exported.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/alpha/kernel/irq_alpha.c')
-rw-r--r-- | arch/alpha/kernel/irq_alpha.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/alpha/kernel/irq_alpha.c b/arch/alpha/kernel/irq_alpha.c index 6dd126b8be85..e16aeb6e79ef 100644 --- a/arch/alpha/kernel/irq_alpha.c +++ b/arch/alpha/kernel/irq_alpha.c | |||
@@ -6,6 +6,7 @@ | |||
6 | #include <linux/sched.h> | 6 | #include <linux/sched.h> |
7 | #include <linux/irq.h> | 7 | #include <linux/irq.h> |
8 | #include <linux/kernel_stat.h> | 8 | #include <linux/kernel_stat.h> |
9 | #include <linux/module.h> | ||
9 | 10 | ||
10 | #include <asm/machvec.h> | 11 | #include <asm/machvec.h> |
11 | #include <asm/dma.h> | 12 | #include <asm/dma.h> |
@@ -16,6 +17,7 @@ | |||
16 | /* Hack minimum IPL during interrupt processing for broken hardware. */ | 17 | /* Hack minimum IPL during interrupt processing for broken hardware. */ |
17 | #ifdef CONFIG_ALPHA_BROKEN_IRQ_MASK | 18 | #ifdef CONFIG_ALPHA_BROKEN_IRQ_MASK |
18 | int __min_ipl; | 19 | int __min_ipl; |
20 | EXPORT_SYMBOL(__min_ipl); | ||
19 | #endif | 21 | #endif |
20 | 22 | ||
21 | /* | 23 | /* |
@@ -30,6 +32,7 @@ dummy_perf(unsigned long vector, struct pt_regs *regs) | |||
30 | } | 32 | } |
31 | 33 | ||
32 | void (*perf_irq)(unsigned long, struct pt_regs *) = dummy_perf; | 34 | void (*perf_irq)(unsigned long, struct pt_regs *) = dummy_perf; |
35 | EXPORT_SYMBOL(perf_irq); | ||
33 | 36 | ||
34 | /* | 37 | /* |
35 | * The main interrupt entry point. | 38 | * The main interrupt entry point. |