Commit 21d1f908 authored by Thomas Gleixner's avatar Thomas Gleixner

Revert "PM / sleep / irq: Do not suspend wakeup interrupts"

This reverts commit d709f7bc.

Undo, because it might break exisiting functionality.
Requested-by: default avatarRafael J. Wysocki <rjw@rjwysocki.net>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 4fae4e76
......@@ -385,8 +385,7 @@ setup_affinity(unsigned int irq, struct irq_desc *desc, struct cpumask *mask)
void __disable_irq(struct irq_desc *desc, unsigned int irq, bool suspend)
{
if (suspend) {
if (!desc->action || (desc->action->flags & IRQF_NO_SUSPEND) ||
irqd_has_set(&desc->irq_data, IRQD_WAKEUP_STATE))
if (!desc->action || (desc->action->flags & IRQF_NO_SUSPEND))
return;
desc->istate |= IRQS_SUSPENDED;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment