Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+3 −7
Original line number Diff line number Diff line
@@ -46,8 +46,6 @@
#define INTC_PENDING_IRQ3	0x00f8
#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 INTCPS_NR_ILR_REGS	128
#define INTCPS_NR_MIR_REGS	3
@@ -188,7 +186,7 @@ void __init ti81xx_init_irq(void)
	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;
	int handled_irq = 0;
@@ -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)
{
	void __iomem *base_addr = OMAP2_IRQ_BASE;
	omap_intc_handle_irq(base_addr, regs);
	omap_intc_handle_irq(regs);
}

int __init intc_of_init(struct device_node *node,
@@ -334,7 +331,6 @@ void omap3_intc_resume_idle(void)

asmlinkage void __exception_irq_entry omap3_intc_handle_irq(struct pt_regs *regs)
{
	void __iomem *base_addr = OMAP3_IRQ_BASE;
	omap_intc_handle_irq(base_addr, regs);
	omap_intc_handle_irq(regs);
}
#endif /* CONFIG_ARCH_OMAP3 */