Skip to content

Commit 26c21dd

Browse files
Ulrich HechtKAGA-KOKO
authored andcommitted
irqchip/renesas-intc-irqpin: r8a7778 IRLM setup support
Works the same as on r8a7779. Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Cc: Jason Cooper <jason@lakedaemon.net> Cc: Marc Zyngier <marc.zyngier@arm.com> Link: http://lkml.kernel.org/r/1443607387-19147-1-git-send-email-geert+Brenesas@glider.be Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
1 parent 99c221d commit 26c21dd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

drivers/irqchip/irq-renesas-intc-irqpin.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,14 +361,16 @@ static const struct irq_domain_ops intc_irqpin_irq_domain_ops = {
361361
.xlate = irq_domain_xlate_twocell,
362362
};
363363

364-
static const struct intc_irqpin_irlm_config intc_irqpin_irlm_r8a7779 = {
364+
static const struct intc_irqpin_irlm_config intc_irqpin_irlm_r8a777x = {
365365
.irlm_bit = 23, /* ICR0.IRLM0 */
366366
};
367367

368368
static const struct of_device_id intc_irqpin_dt_ids[] = {
369369
{ .compatible = "renesas,intc-irqpin", },
370+
{ .compatible = "renesas,intc-irqpin-r8a7778",
371+
.data = &intc_irqpin_irlm_r8a777x },
370372
{ .compatible = "renesas,intc-irqpin-r8a7779",
371-
.data = &intc_irqpin_irlm_r8a7779 },
373+
.data = &intc_irqpin_irlm_r8a777x },
372374
{},
373375
};
374376
MODULE_DEVICE_TABLE(of, intc_irqpin_dt_ids);

0 commit comments

Comments
 (0)