Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1255499
| From | Lucas Stach <dev@lynxeye.de> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] irqchip: tegra: propagate IRQ type setting to parent |
| Date | 2015-10-25 16:50 +0100 |
| Message-ID | <qnvIt-4LF-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
The LIC doesn't deal with the different types of interrupts itself
but needs to forward calls to set the appropriate type to its parent
IRQ controller.
Without this fix all IRQs routed through the LIC will stay at the
initial EDGE type, while most of them should actually be level triggered.
Cc: <stable@vger.kernel.org> # 4.1
Signed-off-by: Lucas Stach <dev@lynxeye.de>
---
drivers/irqchip/irq-tegra.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/irqchip/irq-tegra.c b/drivers/irqchip/irq-tegra.c
index 2fd89eb..fd88e68 100644
--- a/drivers/irqchip/irq-tegra.c
+++ b/drivers/irqchip/irq-tegra.c
@@ -214,6 +214,7 @@ static struct irq_chip tegra_ictlr_chip = {
.irq_unmask = tegra_unmask,
.irq_retrigger = tegra_retrigger,
.irq_set_wake = tegra_set_wake,
+ .irq_set_type = irq_chip_set_type_parent,
.flags = IRQCHIP_MASK_ON_SUSPEND,
#ifdef CONFIG_SMP
.irq_set_affinity = irq_chip_set_affinity_parent,
--
2.4.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH] irqchip: tegra: propagate IRQ type setting to parent Lucas Stach <dev@lynxeye.de> - 2015-10-25 16:50 +0100 [tip:irq/urgent] irqchip/tegra: Propagate IRQ type setting to parent tip-bot for Lucas Stach <tipbot@zytor.com> - 2015-10-26 01:30 +0100
csiph-web