summaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/8xx
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2013-02-13 23:38:51 +0100
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2013-06-20 16:55:08 +1000
commite80034047bee9ceacfc1bfff873ebfdd049817ca (patch)
tree3ae175732d4c413a2f86ce08ca7b75e1f77a3b6b /arch/powerpc/platforms/8xx
parentfce144b477fb0313f6612d5e3e22b67d7bdf935e (diff)
downloadlinux-e80034047bee9ceacfc1bfff873ebfdd049817ca.tar.bz2
powerpc: Mark low level irq handlers NO_THREAD
These low level handlers cannot be threaded. Mark them NO_THREAD Reported-by: leroy christophe <christophe.leroy@c-s.fr> Tested-by: leroy christophe <christophe.leroy@c-s.fr> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms/8xx')
-rw-r--r--arch/powerpc/platforms/8xx/m8xx_setup.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/8xx/m8xx_setup.c b/arch/powerpc/platforms/8xx/m8xx_setup.c
index 1e121088826f..806cbbd86ec6 100644
--- a/arch/powerpc/platforms/8xx/m8xx_setup.c
+++ b/arch/powerpc/platforms/8xx/m8xx_setup.c
@@ -43,6 +43,7 @@ static irqreturn_t timebase_interrupt(int irq, void *dev)
static struct irqaction tbint_irqaction = {
.handler = timebase_interrupt,
+ .flags = IRQF_NO_THREAD,
.name = "tbint",
};