summary refs log tree commit diff
path: root/arch/mn10300
diff options
context:
space:
mode:
authorAndrew Morton <akpm@linux-foundation.org>2011-01-03 14:59:11 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2011-01-03 16:36:33 -0800
commitd9a1abe4844e7591cd82e167a1a09e6546f6c45e (patch)
tree6963e2792b9bdbf126e74b1da9bbfcba1acf5a6e /arch/mn10300
parent867c20265459d30a01b021a9c1e81fb4c5832aa9 (diff)
downloadlinux-d9a1abe4844e7591cd82e167a1a09e6546f6c45e.tar.gz
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/mn10300')
-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 c2e44597c22b..ac11754ecec5 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);