aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorJames Bottomley <james.bottomley@steeleye.com>2005-01-14 23:15:41 -0800
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-01-14 23:15:41 -0800
commitb6aff4aa539a7be12c970cd8b52767a60572bfd5 (patch)
tree14b532ac3f13eee0f878db071893f935743ac25b /arch
parent22afd83baa64b9fc102b8bacc71364d816e297d0 (diff)
downloadhistory-b6aff4aa539a7be12c970cd8b52767a60572bfd5.tar.gz
[PATCH] generic irq code missing export of probe_irq_mask()
Matthew Wilcox just converted parisc over to doing the generic irq code and we ran across the symbol probe_irq_mask being undefined (and thus preventing yenta_socket from loading). It looks like the EXPORT_SYMBOL() was accidentally missed from kernel/irq/autoprobe.c and no-one noticed on x86 because it's still in i386_ksyms.c This patch corrects the problem so that the generic irq code now works completely on parisc. Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/i386/kernel/i386_ksyms.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/i386/kernel/i386_ksyms.c b/arch/i386/kernel/i386_ksyms.c
index 13720d480f217a..bd22e876255804 100644
--- a/arch/i386/kernel/i386_ksyms.c
+++ b/arch/i386/kernel/i386_ksyms.c
@@ -74,7 +74,6 @@ EXPORT_SYMBOL_GPL(kernel_fpu_begin);
EXPORT_SYMBOL(__ioremap);
EXPORT_SYMBOL(ioremap_nocache);
EXPORT_SYMBOL(iounmap);
-EXPORT_SYMBOL(probe_irq_mask);
EXPORT_SYMBOL(kernel_thread);
EXPORT_SYMBOL(pm_idle);
EXPORT_SYMBOL(pm_power_off);