summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2011-01-03 22:59:11 (GMT)
committerLinus Torvalds <torvalds@linux-foundation.org>2011-01-04 00:36:33 (GMT)
commitd9a1abe4844e7591cd82e167a1a09e6546f6c45e (patch)
tree6963e2792b9bdbf126e74b1da9bbfcba1acf5a6e /arch
parent867c20265459d30a01b021a9c1e81fb4c5832aa9 (diff)
downloadlinux-fsl-qoriq-d9a1abe4844e7591cd82e167a1a09e6546f6c45e.tar.xz
arch/mn10300/kernel/irq.c: fix build
Addresses https://bugzilla.kernel.org/show_bug.cgi?id=25702 Reported-by: Martin Ettl <ettl.martin@gmx.de> Cc: David Howells <dhowells@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/mn10300/kernel/irq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mn10300/kernel/irq.c b/arch/mn10300/kernel/irq.c
index c2e4459..ac11754 100644
--- a/arch/mn10300/kernel/irq.c
+++ b/arch/mn10300/kernel/irq.c
@@ -459,7 +459,7 @@ void migrate_irqs(void)
tmp = CROSS_GxICR(irq, new);
x &= GxICR_LEVEL | GxICR_ENABLE;
- if (GxICR(irq) & GxICR_REQUEST) {
+ if (GxICR(irq) & GxICR_REQUEST)
x |= GxICR_REQUEST | GxICR_DETECT;
CROSS_GxICR(irq, new) = x;
tmp = CROSS_GxICR(irq, new);