OSDN Git Service

genirq: Set IRQCHIP_SKIP_SET_WAKE flag for dummy_irq_chip
authorRoger Quadros <rogerq@ti.com>
Wed, 15 Apr 2015 08:14:11 +0000 (11:14 +0300)
committerThomas Gleixner <tglx@linutronix.de>
Fri, 24 Apr 2015 18:57:06 +0000 (20:57 +0200)
Without this system suspend is broken on systems that have
drivers calling enable/disable_irq_wake() for interrupts based off
the dummy irq hook. (e.g. drivers/gpio/gpio-pcf857x.c)

Signed-off-by: Roger Quadros <rogerq@ti.com>
Cc: <cw00.choi@samsung.com>
Cc: <balbi@ti.com>
Cc: <tony@atomide.com>
Cc: Gregory Clement <gregory.clement@free-electrons.com>
Link: http://lkml.kernel.org/r/552E1DD3.4040106@ti.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
kernel/irq/dummychip.c

index 988dc58..2feb6fe 100644 (file)
@@ -57,5 +57,6 @@ struct irq_chip dummy_irq_chip = {
        .irq_ack        = noop,
        .irq_mask       = noop,
        .irq_unmask     = noop,
+       .flags          = IRQCHIP_SKIP_SET_WAKE,
 };
 EXPORT_SYMBOL_GPL(dummy_irq_chip);