From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751318AbcCTTSY (ORCPT ); Sun, 20 Mar 2016 15:18:24 -0400 Received: from [198.137.202.10] ([198.137.202.10]:59812 "EHLO terminus.zytor.com" rhost-flags-FAIL-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1750834AbcCTTSQ (ORCPT ); Sun, 20 Mar 2016 15:18:16 -0400 Date: Sun, 20 Mar 2016 12:12:49 -0700 From: tip-bot for Axel Lin Message-ID: Cc: axel.lin@ingics.com, thierry.reding@gmail.com, mingo@kernel.org, hpa@zytor.com, linux-kernel@vger.kernel.org, tglx@linutronix.de, swarren@wwwdotorg.org, gnurou@gmail.com, marc.zyngier@arm.com, jason@lakedaemon.net Reply-To: thierry.reding@gmail.com, axel.lin@ingics.com, hpa@zytor.com, mingo@kernel.org, linux-kernel@vger.kernel.org, swarren@wwwdotorg.org, tglx@linutronix.de, marc.zyngier@arm.com, gnurou@gmail.com, jason@lakedaemon.net In-Reply-To: <1458477845.28679.1.camel@ingics.com> References: <1458477845.28679.1.camel@ingics.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:irq/urgent] irqchip/tegra: Switch to use irq_domain_free_irqs_common Git-Commit-ID: 46f920d8a970cf102e18f25814a4ff4729ad8537 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 46f920d8a970cf102e18f25814a4ff4729ad8537 Gitweb: http://git.kernel.org/tip/46f920d8a970cf102e18f25814a4ff4729ad8537 Author: Axel Lin AuthorDate: Sun, 20 Mar 2016 20:44:05 +0800 Committer: Thomas Gleixner CommitDate: Sun, 20 Mar 2016 20:08:28 +0100 irqchip/tegra: Switch to use irq_domain_free_irqs_common Current code calls irq_domain_alloc_irqs_parent() in .alloc, so it should call irq_domain_free_irqs_parent() accordingly in .free. Fix it by switching to use irq_domain_free_irqs_common() instead of the open-coded private implementation. Signed-off-by: Axel Lin Cc: Alexandre Courbot Cc: Jason Cooper Cc: Stephen Warren Cc: Marc Zyngier Cc: Thierry Reding Cc: linux-tegra@vger.kernel.org Link: http://lkml.kernel.org/r/1458477845.28679.1.camel@ingics.com Signed-off-by: Thomas Gleixner --- drivers/irqchip/irq-tegra.c | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/drivers/irqchip/irq-tegra.c b/drivers/irqchip/irq-tegra.c index 121ec30..50be963 100644 --- a/drivers/irqchip/irq-tegra.c +++ b/drivers/irqchip/irq-tegra.c @@ -275,22 +275,10 @@ static int tegra_ictlr_domain_alloc(struct irq_domain *domain, &parent_fwspec); } -static void tegra_ictlr_domain_free(struct irq_domain *domain, - unsigned int virq, - unsigned int nr_irqs) -{ - unsigned int i; - - for (i = 0; i < nr_irqs; i++) { - struct irq_data *d = irq_domain_get_irq_data(domain, virq + i); - irq_domain_reset_irq_data(d); - } -} - static const struct irq_domain_ops tegra_ictlr_domain_ops = { .translate = tegra_ictlr_domain_translate, .alloc = tegra_ictlr_domain_alloc, - .free = tegra_ictlr_domain_free, + .free = irq_domain_free_irqs_common, }; static int __init tegra_ictlr_init(struct device_node *node,