public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [patch] one extra (incorrect) test in mask_ack_irq()
@ 2009-03-19  2:16 Frank Rowand
  2009-03-19  7:32 ` Thomas Gleixner
  0 siblings, 1 reply; 2+ messages in thread
From: Frank Rowand @ 2009-03-19  2:16 UTC (permalink / raw)
  To: mingo; +Cc: tglx, linux-kernel


preempt-irqs-core.patch added an incorrect check for the existence of
desc->chip->ack to mask_ack_irq()

Signed-off-by: Frank Rowand <frank.rowand@am.sony.com>

--- linux-2.6.29-rc7/kernel/irq/chip.c	2009-03-18 17:58:03.000000000 -0800
+++ linux-2.6.29-rc7_new/kernel/irq/chip.c	2009-03-18 17:59:15.000000000 -0800
@@ -293,7 +293,6 @@ static inline void mask_ack_irq(struct i
 	if (desc->chip->mask_ack)
 		desc->chip->mask_ack(irq);
 	else {
-		if (desc->chip->ack)
 		if (desc->chip->mask)
 			desc->chip->mask(irq);
 		if (desc->chip->ack)


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-03-19  7:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-19  2:16 [patch] one extra (incorrect) test in mask_ack_irq() Frank Rowand
2009-03-19  7:32 ` Thomas Gleixner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox