Commit 63de80af authored by Linus Torvalds's avatar Linus Torvalds

Fix bad prototypes in kernel/softirq.c

parent 30d14944
...@@ -51,7 +51,7 @@ static inline void wakeup_softirqd(unsigned cpu) ...@@ -51,7 +51,7 @@ static inline void wakeup_softirqd(unsigned cpu)
wake_up_process(tsk); wake_up_process(tsk);
} }
asmlinkage void do_softirq() asmlinkage void do_softirq(void)
{ {
__u32 pending; __u32 pending;
unsigned long flags; unsigned long flags;
...@@ -296,7 +296,7 @@ static struct notifier_block tasklet_nb = { ...@@ -296,7 +296,7 @@ static struct notifier_block tasklet_nb = {
.next = NULL, .next = NULL,
}; };
void __init softirq_init() void __init softirq_init(void)
{ {
open_softirq(TASKLET_SOFTIRQ, tasklet_action, NULL); open_softirq(TASKLET_SOFTIRQ, tasklet_action, NULL);
open_softirq(HI_SOFTIRQ, tasklet_hi_action, NULL); open_softirq(HI_SOFTIRQ, tasklet_hi_action, NULL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment