projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9fd4a50
)
ARM: imx27-dt: Fix build due to removal of irq_domain_add_simple()
author
Fabio Estevam
<festevam@gmail.com>
Thu, 12 Apr 2012 01:12:09 +0000
(22:12 -0300)
committer
Sascha Hauer
<s.hauer@pengutronix.de>
Wed, 18 Apr 2012 09:52:24 +0000
(11:52 +0200)
commit
6b783f7c
(irq_domain: Remove irq_domain_add_simple()
replaced irq_domain_add_simple with irq_domain_add_legacy()
Implement this conversion so that imx27-dt can be built again.
Reported-by: Chris Ball <cjb@laptop.org>
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
arch/arm/mach-imx/imx27-dt.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-imx/imx27-dt.c
b/arch/arm/mach-imx/imx27-dt.c
index 861ceb8232d60ca468cb361a749e34574bdb7961..ed38d03c61f22296acb782e7e4cc9c8dfde20344 100644
(file)
--- a/
arch/arm/mach-imx/imx27-dt.c
+++ b/
arch/arm/mach-imx/imx27-dt.c
@@
-35,7
+35,7
@@
static const struct of_dev_auxdata imx27_auxdata_lookup[] __initconst = {
static int __init imx27_avic_add_irq_domain(struct device_node *np,
struct device_node *interrupt_parent)
{
- irq_domain_add_
simple(np, 0
);
+ irq_domain_add_
legacy(np, 64, 0, 0, &irq_domain_simple_ops, NULL
);
return 0;
}
@@
-44,7
+44,9
@@
static int __init imx27_gpio_add_irq_domain(struct device_node *np,
{
static int gpio_irq_base = MXC_GPIO_IRQ_START + ARCH_NR_GPIOS;
- irq_domain_add_simple(np, gpio_irq_base);
+ gpio_irq_base -= 32;
+ irq_domain_add_legacy(np, 32, gpio_irq_base, 0, &irq_domain_simple_ops,
+ NULL);
return 0;
}