]> git.karo-electronics.de Git - linux-beck.git/commitdiff
genirq: Move MASK_ON_SUSPEND handling into suspend_device_irqs()
authorThomas Gleixner <tglx@linutronix.de>
Thu, 28 Aug 2014 14:49:43 +0000 (16:49 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Mon, 1 Sep 2014 11:48:21 +0000 (13:48 +0200)
There is no reason why we should delay the masking of interrupts whose
interrupt chip requests MASK_ON_SUSPEND to the point where we check
the wakeup interrupts. We can do it right at the point where we mark
the interrupt as suspended.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
kernel/irq/pm.c

index 74ca6bb541d5665b5d6bb3fcef15f6910d9eb969..a21b3dc9825a3f7a619f1bd91a8ec2a826673f93 100644 (file)
@@ -56,6 +56,15 @@ static void suspend_device_irq(struct irq_desc *desc, int irq)
 
        desc->istate |= IRQS_SUSPENDED;
        __disable_irq(desc, irq);
+
+       /*
+        * Hardware which has no wakeup source configuration facility
+        * requires that the non wakeup interrupts are masked at the
+        * chip level. The chip implementation indicates that with
+        * IRQCHIP_MASK_ON_SUSPEND.
+        */
+       if (irq_desc_get_chip(desc)->flags & IRQCHIP_MASK_ON_SUSPEND)
+               mask_irq(desc);
 }
 
 /**
@@ -176,19 +185,7 @@ int check_wakeup_irqs(void)
                if (irqd_is_wakeup_set(&desc->irq_data)) {
                        if (desc->depth == 1 && desc->istate & IRQS_PENDING)
                                return -EBUSY;
-                       continue;
                }
-               /*
-                * Check the non wakeup interrupts whether they need
-                * to be masked before finally going into suspend
-                * state. That's for hardware which has no wakeup
-                * source configuration facility. The chip
-                * implementation indicates that with
-                * IRQCHIP_MASK_ON_SUSPEND.
-                */
-               if (desc->istate & IRQS_SUSPENDED &&
-                   irq_desc_get_chip(desc)->flags & IRQCHIP_MASK_ON_SUSPEND)
-                       mask_irq(desc);
        }
 
        return 0;