From patchwork Wed Nov 23 16:56:41 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 5299 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 192C323E07 for ; Wed, 23 Nov 2011 16:57:01 +0000 (UTC) Received: from mail-gy0-f180.google.com (mail-gy0-f180.google.com [209.85.160.180]) by fiordland.canonical.com (Postfix) with ESMTP id D6F92A1834A for ; Wed, 23 Nov 2011 16:57:00 +0000 (UTC) Received: by ghbg18 with SMTP id g18so2120572ghb.11 for ; Wed, 23 Nov 2011 08:57:00 -0800 (PST) Received: by 10.152.104.1 with SMTP id ga1mr15040164lab.40.1322067419815; Wed, 23 Nov 2011 08:56:59 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.41.198 with SMTP id h6cs245571lal; Wed, 23 Nov 2011 08:56:59 -0800 (PST) Received: by 10.227.198.7 with SMTP id em7mr15597161wbb.13.1322067413069; Wed, 23 Nov 2011 08:56:53 -0800 (PST) Received: from eu1sys200aog113.obsmtp.com (eu1sys200aog113.obsmtp.com. [207.126.144.135]) by mx.google.com with SMTP id fn17si8798901wbb.33.2011.11.23.08.56.47 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 23 Nov 2011 08:56:53 -0800 (PST) Received-SPF: neutral (google.com: 207.126.144.135 is neither permitted nor denied by best guess record for domain of linus.walleij@stericsson.com) client-ip=207.126.144.135; Authentication-Results: mx.google.com; spf=neutral (google.com: 207.126.144.135 is neither permitted nor denied by best guess record for domain of linus.walleij@stericsson.com) smtp.mail=linus.walleij@stericsson.com Received: from beta.dmz-us.st.com ([167.4.1.35]) (using TLSv1) by eu1sys200aob113.postini.com ([207.126.147.11]) with SMTP ID DSNKTs0lzq05QTC6yhvbw+1wOivMgXpjXlaQ@postini.com; Wed, 23 Nov 2011 16:56:52 UTC Received: from zeta.dmz-us.st.com (ns4.st.com [167.4.16.71]) by beta.dmz-us.st.com (STMicroelectronics) with ESMTP id BDE8057; Wed, 23 Nov 2011 16:56:43 +0000 (GMT) Received: from relay2.stm.gmessaging.net (unknown [10.230.100.18]) by zeta.dmz-us.st.com (STMicroelectronics) with ESMTP id 6B3D350; Wed, 23 Nov 2011 16:44:56 +0000 (GMT) Received: from exdcvycastm003.EQ1STM.local (alteon-source-exch [10.230.100.61]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (Client CN "exdcvycastm003", Issuer "exdcvycastm003" (not verified)) by relay2.stm.gmessaging.net (Postfix) with ESMTPS id 47180A8088; Wed, 23 Nov 2011 17:56:38 +0100 (CET) Received: from localhost.localdomain (10.230.100.153) by smtp.stericsson.com (10.230.100.1) with Microsoft SMTP Server (TLS) id 8.3.83.0; Wed, 23 Nov 2011 17:56:44 +0100 From: Linus Walleij To: Andrew Morton Cc: Alessandro Zummo , , Robert Marklund , Linus Walleij Subject: [RESEND PATCH 1/4] rtc/ab8500: don't disable IRQ:s when suspending Date: Wed, 23 Nov 2011 17:56:41 +0100 Message-ID: <1322067401-12469-1-git-send-email-linus.walleij@stericsson.com> X-Mailer: git-send-email 1.7.3.2 MIME-Version: 1.0 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;