[patch] softlockup: make asm/irq_regs.h available on every platform

From: Ingo Molnar
Date: Tue Jul 17 2007 - 08:11:57 EST


Subject: core: make asm/irq_regs.h available on every platform
From: Ingo Molnar <mingo@xxxxxxx>

the softlockup detector would like to use get_irq_regs(), so generalize
the availability on every Linux architecture.

(it is fine for an architecture to always return NULL to get_irq_regs(),
which it does by default.)

Signed-off-by: Ingo Molnar <mingo@xxxxxxx>
---
include/asm-arm26/irq_regs.h | 1 +
include/asm-cris/irq_regs.h | 1 +
include/asm-ppc/irq_regs.h | 1 +
include/asm-v850/irq_regs.h | 1 +
4 files changed, 4 insertions(+)

Index: linux/include/asm-arm26/irq_regs.h
===================================================================
--- /dev/null
+++ linux/include/asm-arm26/irq_regs.h
@@ -0,0 +1 @@
+#include <asm-generic/irq_regs.h>
Index: linux/include/asm-cris/irq_regs.h
===================================================================
--- /dev/null
+++ linux/include/asm-cris/irq_regs.h
@@ -0,0 +1 @@
+#include <asm-generic/irq_regs.h>
Index: linux/include/asm-ppc/irq_regs.h
===================================================================
--- /dev/null
+++ linux/include/asm-ppc/irq_regs.h
@@ -0,0 +1 @@
+#include <asm-generic/irq_regs.h>
Index: linux/include/asm-v850/irq_regs.h
===================================================================
--- /dev/null
+++ linux/include/asm-v850/irq_regs.h
@@ -0,0 +1 @@
+#include <asm-generic/irq_regs.h>
-
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/