[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20070717121139.GA13276@elte.hu>
Date: Tue, 17 Jul 2007 14:11:39 +0200
From: Ingo Molnar <mingo@...e.hu>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: Linus Torvalds <torvalds@...ux-foundation.org>,
linux-kernel@...r.kernel.org
Subject: [patch] softlockup: make asm/irq_regs.h available on every platform
Subject: core: make asm/irq_regs.h available on every platform
From: Ingo Molnar <mingo@...e.hu>
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@...e.hu>
---
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists