[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20130306062339.5262.30625.sendpatchset@w520>
Date: Wed, 06 Mar 2013 15:23:39 +0900
From: Magnus Damm <magnus.damm@...il.com>
To: linux-kernel@...r.kernel.org
Cc: linux-sh@...r.kernel.org, benh@...nel.crashing.org,
grant.likely@...retlab.ca, horms@...ge.net.au,
Magnus Damm <magnus.damm@...il.com>, tglx@...utronix.de
Subject: [PATCH] irqchip: irqc: Add DT support
From: Magnus Damm <damm@...nsource.se>
Add DT support to the IRQC External IRQ Pin driver.
Signed-off-by: Magnus Damm <damm@...nsource.se>
---
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,
}
};
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists