Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752878Ab0LLM0F (ORCPT ); Sun, 12 Dec 2010 07:26:05 -0500 Received: from opensource.wolfsonmicro.com ([80.75.67.52]:60292 "EHLO opensource2.wolfsonmicro.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752687Ab0LLM0D (ORCPT ); Sun, 12 Dec 2010 07:26:03 -0500 From: Mark Brown To: Rabin Vincent , Linus Walleij , Samuel Ortiz Cc: linux-kernel@vger.kernel.org, Paul Mundt , Mark Brown Subject: [PATCH] mfd: Conver tc35892 to new irq_ APIs Date: Sun, 12 Dec 2010 12:26:09 +0000 Message-Id: <1292156769-20718-1-git-send-email-broonie@opensource.wolfsonmicro.com> X-Mailer: git-send-email 1.7.2.3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1239 Lines: 41 The genirq core is being converted to pass struct irq_data to irq_chip operations rather than an IRQ number. Update the tc35892 driver to the new APIs. Signed-off-by: Mark Brown --- drivers/mfd/tc35892.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/mfd/tc35892.c b/drivers/mfd/tc35892.c index e619e2a..6db55d8 100644 --- a/drivers/mfd/tc35892.c +++ b/drivers/mfd/tc35892.c @@ -163,15 +163,15 @@ static irqreturn_t tc35892_irq(int irq, void *data) return IRQ_HANDLED; } -static void tc35892_irq_dummy(unsigned int irq) +static void tc35892_irq_dummy(struct irq_data *data) { /* No mask/unmask at this level */ } static struct irq_chip tc35892_irq_chip = { - .name = "tc35892", - .mask = tc35892_irq_dummy, - .unmask = tc35892_irq_dummy, + .name = "tc35892", + .irq_mask = tc35892_irq_dummy, + .irq_unmask = tc35892_irq_dummy, }; static int tc35892_irq_init(struct tc35892 *tc35892) -- 1.7.2.3 -- 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/