Commit d1e66d69 authored by Felipe Balbi's avatar Felipe Balbi Committed by Tony Lindgren

arm: omap: irq: remove unnecessary base_addr argument

omap_intc_handle_irq now had an unnecessary
base_addr argument. Let's remove it and fix
all callers.
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 11983656
...@@ -46,8 +46,6 @@ ...@@ -46,8 +46,6 @@
#define INTC_PENDING_IRQ3 0x00f8 #define INTC_PENDING_IRQ3 0x00f8
#define INTC_ILR0 0x0100 #define INTC_ILR0 0x0100
#define OMAP2_IRQ_BASE OMAP2_L4_IO_ADDRESS(OMAP24XX_IC_BASE)
#define OMAP3_IRQ_BASE OMAP2_L4_IO_ADDRESS(OMAP34XX_IC_BASE)
#define ACTIVEIRQ_MASK 0x7f /* omap2/3 active interrupt bits */ #define ACTIVEIRQ_MASK 0x7f /* omap2/3 active interrupt bits */
#define INTCPS_NR_ILR_REGS 128 #define INTCPS_NR_ILR_REGS 128
#define INTCPS_NR_MIR_REGS 3 #define INTCPS_NR_MIR_REGS 3
...@@ -188,7 +186,7 @@ void __init ti81xx_init_irq(void) ...@@ -188,7 +186,7 @@ void __init ti81xx_init_irq(void)
omap_init_irq(OMAP34XX_IC_BASE, 128, NULL); omap_init_irq(OMAP34XX_IC_BASE, 128, NULL);
} }
static inline void omap_intc_handle_irq(void __iomem *base_addr, struct pt_regs *regs) static inline void omap_intc_handle_irq(struct pt_regs *regs)
{ {
u32 irqnr; u32 irqnr;
int handled_irq = 0; int handled_irq = 0;
...@@ -232,8 +230,7 @@ static inline void omap_intc_handle_irq(void __iomem *base_addr, struct pt_regs ...@@ -232,8 +230,7 @@ static inline void omap_intc_handle_irq(void __iomem *base_addr, struct pt_regs
asmlinkage void __exception_irq_entry omap2_intc_handle_irq(struct pt_regs *regs) asmlinkage void __exception_irq_entry omap2_intc_handle_irq(struct pt_regs *regs)
{ {
void __iomem *base_addr = OMAP2_IRQ_BASE; omap_intc_handle_irq(regs);
omap_intc_handle_irq(base_addr, regs);
} }
int __init intc_of_init(struct device_node *node, int __init intc_of_init(struct device_node *node,
...@@ -334,7 +331,6 @@ void omap3_intc_resume_idle(void) ...@@ -334,7 +331,6 @@ void omap3_intc_resume_idle(void)
asmlinkage void __exception_irq_entry omap3_intc_handle_irq(struct pt_regs *regs) asmlinkage void __exception_irq_entry omap3_intc_handle_irq(struct pt_regs *regs)
{ {
void __iomem *base_addr = OMAP3_IRQ_BASE; omap_intc_handle_irq(regs);
omap_intc_handle_irq(base_addr, regs);
} }
#endif /* CONFIG_ARCH_OMAP3 */ #endif /* CONFIG_ARCH_OMAP3 */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment