Skip to content

Commit 4bf690d

Browse files
committed
Merge branch 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull irq fixes from Thomas Gleixner: "The last two one-liners for 4.3 from the irqchip space: - Regression fix for armada SoC which addresses the fallout from the set_irq_flags() cleanup - Add the missing propagation of the irq_set_type() callback to the parent interrupt controller of the tegra interrupt chip" * 'irq-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: irqchip/tegra: Propagate IRQ type setting to parent irqchip/armada-370-xp: Fix regression by clearing IRQ_NOAUTOEN
2 parents 56ef9db + 209da39 commit 4bf690d

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

drivers/irqchip/irq-armada-370-xp.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,7 @@ static int armada_370_xp_mpic_irq_map(struct irq_domain *h,
317317
handle_level_irq);
318318
}
319319
irq_set_probe(virq);
320+
irq_clear_status_flags(virq, IRQ_NOAUTOEN);
320321

321322
return 0;
322323
}

drivers/irqchip/irq-tegra.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ static struct irq_chip tegra_ictlr_chip = {
214214
.irq_unmask = tegra_unmask,
215215
.irq_retrigger = tegra_retrigger,
216216
.irq_set_wake = tegra_set_wake,
217+
.irq_set_type = irq_chip_set_type_parent,
217218
.flags = IRQCHIP_MASK_ON_SUSPEND,
218219
#ifdef CONFIG_SMP
219220
.irq_set_affinity = irq_chip_set_affinity_parent,

0 commit comments

Comments
 (0)