2013-03-06 06:17:54

by Magnus Damm

[permalink] [raw]
Subject: [PATCH] irqchip: irqc: Add DT support

From: Magnus Damm <[email protected]>

Add DT support to the IRQC External IRQ Pin driver.

Signed-off-by: Magnus Damm <[email protected]>
---

drivers/irqchip/irq-renesas-irqc.c | 9 +++++++++
1 file changed, 9 insertions(+)

--- 0001/drivers/irqchip/irq-renesas-irqc.c
+++ work/drivers/irqchip/irq-renesas-irqc.c 2013-03-06 15:01:42.000000000 +0900
@@ -145,6 +145,7 @@ static int irqc_irq_domain_map(struct ir

static struct irq_domain_ops irqc_irq_domain_ops = {
.map = irqc_irq_domain_map,
+ .xlate = irq_domain_xlate_twocell,
};

static int irqc_probe(struct platform_device *pdev)
@@ -273,11 +274,19 @@ static int irqc_remove(struct platform_d
return 0;
}

+static const struct of_device_id irqc_dt_ids[] = {
+ { .compatible = "renesas,irqc", },
+ {},
+};
+MODULE_DEVICE_TABLE(of, irqc_dt_ids);
+
static struct platform_driver irqc_device_driver = {
.probe = irqc_probe,
.remove = irqc_remove,
.driver = {
.name = "renesas_irqc",
+ .of_match_table = irqc_dt_ids,
+ .owner = THIS_MODULE,
}
};


2013-03-06 07:56:00

by Simon Horman

[permalink] [raw]
Subject: Re: [PATCH] irqchip: irqc: Add DT support

On Wed, Mar 06, 2013 at 03:23:39PM +0900, Magnus Damm wrote:
> From: Magnus Damm <[email protected]>
>
> Add DT support to the IRQC External IRQ Pin driver.

I have added this to topic/intc-external-irq with the related patches.
The holding-pen for INTC.