From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758642AbbDXTBM (ORCPT ); Fri, 24 Apr 2015 15:01:12 -0400 Received: from terminus.zytor.com ([198.137.202.10]:47431 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757116AbbDXTBI (ORCPT ); Fri, 24 Apr 2015 15:01:08 -0400 Date: Fri, 24 Apr 2015 12:00:40 -0700 From: tip-bot for Roger Quadros Message-ID: Cc: rogerq@ti.com, tglx@linutronix.de, gregory.clement@free-electrons.com, cw00.choi@samsung.com, tony@atomide.com, mingo@kernel.org, linux-kernel@vger.kernel.org, balbi@ti.com, hpa@zytor.com Reply-To: linux-kernel@vger.kernel.org, mingo@kernel.org, tony@atomide.com, cw00.choi@samsung.com, gregory.clement@free-electrons.com, tglx@linutronix.de, rogerq@ti.com, hpa@zytor.com, balbi@ti.com In-Reply-To: <552E1DD3.4040106@ti.com> References: <552E1DD3.4040106@ti.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:irq/urgent] genirq: Set IRQCHIP_SKIP_SET_WAKE flag for dummy_irq_chip Git-Commit-ID: 10a50f1ab5f06c9a3ee5ece3ec52e607ed53c79f X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 10a50f1ab5f06c9a3ee5ece3ec52e607ed53c79f Gitweb: http://git.kernel.org/tip/10a50f1ab5f06c9a3ee5ece3ec52e607ed53c79f Author: Roger Quadros AuthorDate: Wed, 15 Apr 2015 11:14:11 +0300 Committer: Thomas Gleixner CommitDate: Fri, 24 Apr 2015 20:57:06 +0200 genirq: Set IRQCHIP_SKIP_SET_WAKE flag for dummy_irq_chip 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 Cc: Cc: Cc: Cc: Gregory Clement Link: http://lkml.kernel.org/r/552E1DD3.4040106@ti.com Signed-off-by: Thomas Gleixner --- kernel/irq/dummychip.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/irq/dummychip.c b/kernel/irq/dummychip.c index 988dc58..2feb6fe 100644 --- a/kernel/irq/dummychip.c +++ b/kernel/irq/dummychip.c @@ -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);