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

Commit fe31ad41 authored by Sascha Hauer's avatar Sascha Hauer
Browse files

ARM i.MX tzic: do not depend on MXC_INTERNAL_IRQS



This becomes meaningless in subsequent patches.

Signed-off-by: default avatarSascha Hauer <s.hauer@pengutronix.de>
parent 7bce7e8c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -49,6 +49,8 @@

void __iomem *tzic_base; /* Used as irq controller base in entry-macro.S */

#define TZIC_NUM_IRQS 128

#ifdef CONFIG_FIQ
static int tzic_set_irq_fiq(unsigned int irq, unsigned int type)
{
@@ -166,7 +168,7 @@ void __init tzic_init_irq(void __iomem *irqbase)

	/* all IRQ no FIQ Warning :: No selection */

	for (i = 0; i < MXC_INTERNAL_IRQS; i++) {
	for (i = 0; i < TZIC_NUM_IRQS; i++) {
		irq_set_chip_and_handler(i, &mxc_tzic_chip.base,
					 handle_level_irq);
		set_irq_flags(i, IRQF_VALID);