Re: [PATCH v5 2/2] ARM: irqchip: mxs: add Alphascale ASM9260 support

From: Thomas Gleixner
Date: Fri Oct 09 2015 - 10:12:21 EST


On Mon, 5 Oct 2015, Oleksij Rempel wrote:
> @@ -101,7 +151,14 @@ asmlinkage void __exception_irq_entry icoll_handle_irq(struct pt_regs *regs)
> static int icoll_irq_domain_map(struct irq_domain *d, unsigned int virq,
> irq_hw_number_t hw)
> {
> - irq_set_chip_and_handler(virq, &mxs_icoll_chip, handle_level_irq);
> + struct irq_chip *chip;
> +
> + if (icoll_priv.type == ICOLL)
> + chip = &mxs_icoll_chip;
> + else
> + chip = &asm9260_icoll_chip;
> +
> + irq_set_chip_and_handler(virq, chip, handle_level_irq);
> set_irq_flags(virq, IRQF_VALID);

This does neither apply on mainline nor on tip/irq/core. Please
prepare your patches against current trees not against something
stale.

Thanks,

tglx
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/