From patchwork Thu Sep 29 13:46:58 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/3] rtc/ab8500: don't disable IRQ:s when suspending From: Linus Walleij X-Patchwork-Id: 116951 Message-Id: <1317304018-29006-1-git-send-email-linus.walleij@stericsson.com> To: Alessandro Zummo , Cc: Lee Jones , Robert Marklund , Linus Walleij Date: Thu, 29 Sep 2011 15:46:58 +0200 From: Robert Marklund We want this driver to be able to wake up the system. Signed-off-by: Robert Marklund Signed-off-by: Linus Walleij --- drivers/rtc/rtc-ab8500.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/rtc/rtc-ab8500.c b/drivers/rtc/rtc-ab8500.c index e346705..d6bfc4f 100644 --- a/drivers/rtc/rtc-ab8500.c +++ b/drivers/rtc/rtc-ab8500.c @@ -316,8 +316,8 @@ static int __devinit ab8500_rtc_probe(struct platform_device *pdev) return err; } - err = request_threaded_irq(irq, NULL, rtc_alarm_handler, 0, - "ab8500-rtc", rtc); + err = request_threaded_irq(irq, NULL, rtc_alarm_handler, + IRQF_NO_SUSPEND, "ab8500-rtc", rtc); if (err < 0) { rtc_device_unregister(rtc); return err;