[2.6 patch] proper show_interrupts() prototype

From: Adrian Bunk
Date: Tue Oct 30 2007 - 19:51:06 EST


This patch adds a proper prototype for show_interrupts() in
include/linux/interrupt.h

Signed-off-by: Adrian Bunk <bunk@xxxxxxxxxx>

---

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

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/