* [2.6 patch] proper show_interrupts() prototype
@ 2007-10-30 23:50 Adrian Bunk
0 siblings, 0 replies; only message in thread
From: Adrian Bunk @ 2007-10-30 23:50 UTC (permalink / raw)
To: tglx, mingo; +Cc: linux-kernel
This patch adds a proper prototype for show_interrupts() in
include/linux/interrupt.h
Signed-off-by: Adrian Bunk <bunk@kernel.org>
---
arch/h8300/kernel/irq.c | 1 +
fs/proc/proc_misc.c | 2 +-
include/linux/interrupt.h | 2 ++
3 files changed, 4 insertions(+), 1 deletion(-)
3884100dff673abe8667f2e53586ecd705e7af24
diff --git a/arch/h8300/kernel/irq.c b/arch/h8300/kernel/irq.c
index 8dec4dd..5a1b4cf 100644
--- a/arch/h8300/kernel/irq.c
+++ b/arch/h8300/kernel/irq.c
@@ -14,6 +14,7 @@
#include <linux/random.h>
#include <linux/bootmem.h>
#include <linux/irq.h>
+#include <linux/interrupt.h>
#include <asm/system.h>
#include <asm/traps.h>
diff --git a/fs/proc/proc_misc.c b/fs/proc/proc_misc.c
index e0d064e..6357ac2 100644
--- a/fs/proc/proc_misc.c
+++ b/fs/proc/proc_misc.c
@@ -46,6 +46,7 @@
#include <linux/vmalloc.h>
#include <linux/crash_dump.h>
#include <linux/pid_namespace.h>
+#include <linux/interrupt.h>
#include <asm/uaccess.h>
#include <asm/pgtable.h>
#include <asm/io.h>
@@ -598,7 +599,6 @@ static void int_seq_stop(struct seq_file *f, void *v)
}
-extern int show_interrupts(struct seq_file *f, void *v); /* In arch code */
static struct seq_operations int_seq_ops = {
.start = int_seq_start,
.next = int_seq_next,
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
index 2306920..e194afc 100644
--- a/include/linux/interrupt.h
+++ b/include/linux/interrupt.h
@@ -443,4 +443,6 @@ static inline void init_irq_proc(void)
}
#endif
+int show_interrupts(struct seq_file *p, void *v);
+
#endif
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2007-10-30 23:51 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-10-30 23:50 [2.6 patch] proper show_interrupts() prototype Adrian Bunk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome