diff options
author | Felipe Balbi <balbi@ti.com> | 2014-09-15 16:15:05 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2014-09-16 14:45:00 -0700 |
commit | 8bb3b375c8837ea73740883a90b1d7719b2653cc (patch) | |
tree | e798adb1feee131c192220c05efa5bf795d3d3c4 /drivers/irqchip/irq-omap-intc.c | |
parent | 503b8d12e7462df0aea9b31ab65ac17b538540c9 (diff) | |
download | linux-8bb3b375c8837ea73740883a90b1d7719b2653cc.tar.gz linux-8bb3b375c8837ea73740883a90b1d7719b2653cc.tar.bz2 linux-8bb3b375c8837ea73740883a90b1d7719b2653cc.zip |
irqchip: omap-intc: remove unnecesary of_address_to_resource() call
of_iomap(), which is called from omap_init_irq_of(),
already takes care of making sure we have a valid
resource to deal with. Because of that, we can
safely remove our explicit call to of_address_to_resource().
Acked-by: Jason Cooper <jason@lakedaemon.net>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'drivers/irqchip/irq-omap-intc.c')
-rw-r--r-- | drivers/irqchip/irq-omap-intc.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/irqchip/irq-omap-intc.c b/drivers/irqchip/irq-omap-intc.c index f4d562ee3f29..e97b53539386 100644 --- a/drivers/irqchip/irq-omap-intc.c +++ b/drivers/irqchip/irq-omap-intc.c @@ -362,7 +362,6 @@ void __init ti81xx_init_irq(void) static int __init intc_of_init(struct device_node *node, struct device_node *parent) { - struct resource res; int ret; omap_nr_pending = 3; @@ -371,11 +370,6 @@ static int __init intc_of_init(struct device_node *node, if (WARN_ON(!node)) return -ENODEV; - if (of_address_to_resource(node, 0, &res)) { - WARN(1, "unable to get intc registers\n"); - return -EINVAL; - } - if (of_device_is_compatible(node, "ti,am33xx-intc")) { omap_nr_irqs = 128; omap_nr_pending = 4; |