summaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@home.transmeta.com>2003-04-09 07:16:30 -0700
committerLinus Torvalds <torvalds@home.transmeta.com>2003-04-09 07:16:30 -0700
commit63de80afc862cc5ab3f30714fd6697f64c9dd481 (patch)
treea8bcc9e0fc9f1136bc75eeb348c26071ce043d47 /kernel
parent30d14944d53717af8163856b99e3affabb5678bc (diff)
Fix bad prototypes in kernel/softirq.c
Diffstat (limited to 'kernel')
-rw-r--r--kernel/softirq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/softirq.c b/kernel/softirq.c
index 53ef1cb8db96..79ed6b9cbdee 100644
--- a/kernel/softirq.c
+++ b/kernel/softirq.c
@@ -51,7 +51,7 @@ static inline void wakeup_softirqd(unsigned cpu)
wake_up_process(tsk);
}
-asmlinkage void do_softirq()
+asmlinkage void do_softirq(void)
{
__u32 pending;
unsigned long flags;
@@ -296,7 +296,7 @@ static struct notifier_block tasklet_nb = {
.next = NULL,
};
-void __init softirq_init()
+void __init softirq_init(void)
{
open_softirq(TASKLET_SOFTIRQ, tasklet_action, NULL);
open_softirq(HI_SOFTIRQ, tasklet_hi_action, NULL);