From patchwork Tue Oct 11 08:49:17 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Linus Walleij X-Patchwork-Id: 4610 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 6F6DF23DEE for ; Tue, 11 Oct 2011 08:50:10 +0000 (UTC) Received: from mail-wy0-f180.google.com (mail-wy0-f180.google.com [74.125.82.180]) by fiordland.canonical.com (Postfix) with ESMTP id 68819A18310 for ; Tue, 11 Oct 2011 08:50:10 +0000 (UTC) Received: by wyh11 with SMTP id 11so9518807wyh.11 for ; Tue, 11 Oct 2011 01:50:10 -0700 (PDT) Received: by 10.223.17.3 with SMTP id q3mr14133153faa.28.1318322979283; Tue, 11 Oct 2011 01:49:39 -0700 (PDT) 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.24.41 with SMTP id r9cs150372laf; Tue, 11 Oct 2011 01:49:38 -0700 (PDT) Received: by 10.213.34.16 with SMTP id j16mr126411ebd.72.1318322977302; Tue, 11 Oct 2011 01:49:37 -0700 (PDT) Received: from eu1sys200aog104.obsmtp.com (eu1sys200aog104.obsmtp.com. [207.126.144.117]) by mx.google.com with SMTP id t11si4125987eeh.177.2011.10.11.01.49.30 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 11 Oct 2011 01:49:37 -0700 (PDT) Received-SPF: neutral (google.com: 207.126.144.117 is neither permitted nor denied by best guess record for domain of linus.walleij@stericsson.com) client-ip=207.126.144.117; Authentication-Results: mx.google.com; spf=neutral (google.com: 207.126.144.117 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 eu1sys200aob104.postini.com ([207.126.147.11]) with SMTP; Tue, 11 Oct 2011 08:49:37 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 B9DA755; Tue, 11 Oct 2011 08:49:26 +0000 (GMT) Received: from relay1.stm.gmessaging.net (unknown [10.230.100.17]) by zeta.dmz-us.st.com (STMicroelectronics) with ESMTP id 536BE3F; Tue, 11 Oct 2011 08:49:26 +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 relay1.stm.gmessaging.net (Postfix) with ESMTPS id E602224C2F4; Tue, 11 Oct 2011 10:49:20 +0200 (CEST) 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; Tue, 11 Oct 2011 10:49:25 +0200 From: Linus Walleij To: Samuel Ortiz , Cc: Lee Jones , Virupax Sadashivpetimath , Philippe Langlais , Linus Walleij Subject: [PATCH 1/4] mfd/ab8500-core: add interrupt disable hook Date: Tue, 11 Oct 2011 10:49:17 +0200 Message-ID: <1318322957-11435-1-git-send-email-linus.walleij@stericsson.com> X-Mailer: git-send-email 1.7.3.2 MIME-Version: 1.0 From: Virupax Sadashivpetimath Add the missing interrupt disable hook in the irq_chip callbacks for ab8500. Signed-off-by: Virupax Sadashivpetimath Reviewed-by: Srinidhi Kasagar Signed-off-by: Philippe Langlais Signed-off-by: Linus Walleij --- drivers/mfd/ab8500-core.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/mfd/ab8500-core.c b/drivers/mfd/ab8500-core.c index 387705e..eb238ee 100644 --- a/drivers/mfd/ab8500-core.c +++ b/drivers/mfd/ab8500-core.c @@ -293,6 +293,7 @@ static struct irq_chip ab8500_irq_chip = { .irq_bus_lock = ab8500_irq_lock, .irq_bus_sync_unlock = ab8500_irq_sync_unlock, .irq_mask = ab8500_irq_mask, + .irq_disable = ab8500_irq_mask, .irq_unmask = ab8500_irq_unmask, };