aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorArjan van de Ven <arjanv@infradead.org>2004-10-27 18:25:30 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-10-27 18:25:30 -0700
commit0e5079135a7ac864ca6f9135bbbb8de0f5191e85 (patch)
tree738e09f04fe1a0fbf0a3b5766492e721f9be219f /kernel
parent6b5506f002fd5fc238ff503f9453a6b926b9eaa0 (diff)
downloadhistory-0e5079135a7ac864ca6f9135bbbb8de0f5191e85.tar.gz
[PATCH] unexport raise_softirq
The patch below unexports raise_softirq(). raise_softirq() is not the right api for drivers to use, instead raise_softirq_irqoff() is, and thankfully all in-kernel code is using that variant already. To avoid future "accidents", unexport. Acked-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/softirq.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/kernel/softirq.c b/kernel/softirq.c
index 0e1e1356e35ad5..b2f536818b3dcf 100644
--- a/kernel/softirq.c
+++ b/kernel/softirq.c
@@ -183,8 +183,6 @@ void fastcall raise_softirq(unsigned int nr)
local_irq_restore(flags);
}
-EXPORT_SYMBOL(raise_softirq);
-
void open_softirq(int nr, void (*action)(struct softirq_action*), void *data)
{
softirq_vec[nr].data = data;