mirror of
https://github.com/torvalds/linux.git
synced 2024-11-19 02:21:47 +00:00
ARM i.MX tzic: do not depend on MXC_INTERNAL_IRQS
This becomes meaningless in subsequent patches. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
parent
7bce7e8c29
commit
fe31ad4159
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user