On Mon, 21 Sep 2015, Oleksij Rempel wrote: > 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);
set_irq_flags() is gone. Please redo against 4.3-rc2 Thanks, tglx -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/