From: Andrew Morton Date: Mon, 3 Jan 2011 22:59:11 +0000 (-0800) Subject: arch/mn10300/kernel/irq.c: fix build X-Git-Tag: upstream/snapshot3+hdmi~12166 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d9a1abe4844e7591cd82e167a1a09e6546f6c45e;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git arch/mn10300/kernel/irq.c: fix build Addresses https://bugzilla.kernel.org/show_bug.cgi?id=25702 Reported-by: Martin Ettl Cc: David Howells Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- 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);