From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754252AbbI3THA (ORCPT ); Wed, 30 Sep 2015 15:07:00 -0400 Received: from terminus.zytor.com ([198.137.202.10]:36099 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752563AbbI3TG5 (ORCPT ); Wed, 30 Sep 2015 15:06:57 -0400 Date: Wed, 30 Sep 2015 12:06:34 -0700 From: tip-bot for Ulrich Hecht Message-ID: Cc: hpa@zytor.com, geert+renesas@glider.be, marc.zyngier@arm.com, tglx@linutronix.de, ulrich.hecht+renesas@gmail.com, linux-kernel@vger.kernel.org, mingo@kernel.org, jason@lakedaemon.net Reply-To: hpa@zytor.com, geert+renesas@glider.be, marc.zyngier@arm.com, ulrich.hecht+renesas@gmail.com, linux-kernel@vger.kernel.org, tglx@linutronix.de, mingo@kernel.org, jason@lakedaemon.net In-Reply-To: <1443607387-19147-1-git-send-email-geert+Brenesas@glider.be> References: <1443607387-19147-1-git-send-email-geert+Brenesas@glider.be> To: linux-tip-commits@vger.kernel.org Subject: [tip:irq/core] irqchip/renesas-intc-irqpin: r8a7778 IRLM setup support Git-Commit-ID: 26c21dd9885a2d8a4f4d539917c4877ffd399286 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: 26c21dd9885a2d8a4f4d539917c4877ffd399286 Gitweb: http://git.kernel.org/tip/26c21dd9885a2d8a4f4d539917c4877ffd399286 Author: Ulrich Hecht AuthorDate: Wed, 30 Sep 2015 12:03:07 +0200 Committer: Thomas Gleixner CommitDate: Wed, 30 Sep 2015 21:02:22 +0200 irqchip/renesas-intc-irqpin: r8a7778 IRLM setup support Works the same as on r8a7779. Signed-off-by: Ulrich Hecht Signed-off-by: Geert Uytterhoeven Cc: Jason Cooper Cc: Marc Zyngier Link: http://lkml.kernel.org/r/1443607387-19147-1-git-send-email-geert+Brenesas@glider.be Signed-off-by: Thomas Gleixner --- drivers/irqchip/irq-renesas-intc-irqpin.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/irqchip/irq-renesas-intc-irqpin.c b/drivers/irqchip/irq-renesas-intc-irqpin.c index 9525335..c325806 100644 --- a/drivers/irqchip/irq-renesas-intc-irqpin.c +++ b/drivers/irqchip/irq-renesas-intc-irqpin.c @@ -361,14 +361,16 @@ static const struct irq_domain_ops intc_irqpin_irq_domain_ops = { .xlate = irq_domain_xlate_twocell, }; -static const struct intc_irqpin_irlm_config intc_irqpin_irlm_r8a7779 = { +static const struct intc_irqpin_irlm_config intc_irqpin_irlm_r8a777x = { .irlm_bit = 23, /* ICR0.IRLM0 */ }; static const struct of_device_id intc_irqpin_dt_ids[] = { { .compatible = "renesas,intc-irqpin", }, + { .compatible = "renesas,intc-irqpin-r8a7778", + .data = &intc_irqpin_irlm_r8a777x }, { .compatible = "renesas,intc-irqpin-r8a7779", - .data = &intc_irqpin_irlm_r8a7779 }, + .data = &intc_irqpin_irlm_r8a777x }, {}, }; MODULE_DEVICE_TABLE(of, intc_irqpin_dt_ids);