Commit eb0f1c442d7cf1f7cb746c26c6120bb42e69c49c
Committed by
Linus Torvalds
1 parent
8d4b69002e
Exists in
master
and in
4 other branches
proper __do_softirq() prototype
Add a proper prototype for __do_softirq() in include/linux/interrupt.h Signed-off-by: Adrian Bunk <bunk@kernel.org> Acked-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Showing 5 changed files with 1 additions and 8 deletions Side-by-side Diff
arch/s390/kernel/irq.c
arch/sh/kernel/irq.c
arch/x86/kernel/irq_32.c
include/asm-powerpc/irq.h
include/linux/interrupt.h
... | ... | @@ -289,6 +289,7 @@ |
289 | 289 | }; |
290 | 290 | |
291 | 291 | asmlinkage void do_softirq(void); |
292 | +asmlinkage void __do_softirq(void); | |
292 | 293 | extern void open_softirq(int nr, void (*action)(struct softirq_action*), void *data); |
293 | 294 | extern void softirq_init(void); |
294 | 295 | #define __raise_softirq_irqoff(nr) do { or_softirq_pending(1UL << (nr)); } while (0) |