Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758960Ab3E1Ex5 (ORCPT ); Tue, 28 May 2013 00:53:57 -0400 Received: from na3sys009aog113.obsmtp.com ([74.125.149.209]:52245 "EHLO na3sys009aog113.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758843Ab3E1Exk (ORCPT ); Tue, 28 May 2013 00:53:40 -0400 From: To: , CC: , , , , Subject: [PATCH v2 2/4] mfd: 88pm800: remove "IRQF_TRIGGER_FALLING" flag Date: Tue, 28 May 2013 12:48:59 +0800 Message-ID: <1369716541-20034-3-git-send-email-yizhang.mrvl@gmail.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1369716541-20034-1-git-send-email-yizhang.mrvl@gmail.com> References: <1369716541-20034-1-git-send-email-yizhang.mrvl@gmail.com> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 969 Lines: 31 From: Yi Zhang for interrupt controller such as GIC who is level triggered, "IRQF_TRIGGER_FALLING" will fail to request irq Signed-off-by: Yi Zhang --- drivers/mfd/88pm800.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/mfd/88pm800.c b/drivers/mfd/88pm800.c index bbb6aa8..618a6b9 100644 --- a/drivers/mfd/88pm800.c +++ b/drivers/mfd/88pm800.c @@ -318,7 +318,7 @@ out: static int device_irq_init_800(struct pm80x_chip *chip) { struct regmap *map = chip->regmap; - unsigned long flags = IRQF_TRIGGER_FALLING | IRQF_ONESHOT; + unsigned long flags = IRQF_ONESHOT; int data, mask, ret = -EINVAL; if (!map || !chip->irq) { -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/