From: Ludovic Barre Date: Tue, 17 Jul 2018 12:14:27 +0000 (+0200) Subject: irqchip/stm32: Add exti0 translation for stm32mp1 X-Git-Tag: v4.19-rc1~215^2~6^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6bdd0299cf76c38453c06b33cdb58636878aad0d;p=thirdparty%2Fkernel%2Flinux.git irqchip/stm32: Add exti0 translation for stm32mp1 This patch fixes a datasheet issue, in the draft version the "exti0" was not connected whereas is it. Signed-off-by: Ludovic Barre Signed-off-by: Marc Zyngier --- diff --git a/drivers/irqchip/irq-stm32-exti.c b/drivers/irqchip/irq-stm32-exti.c index 3a7e8905a97e9..3df527fcf4e15 100644 --- a/drivers/irqchip/irq-stm32-exti.c +++ b/drivers/irqchip/irq-stm32-exti.c @@ -159,6 +159,7 @@ static const struct stm32_exti_bank *stm32mp1_exti_banks[] = { }; static const struct stm32_desc_irq stm32mp1_desc_irq[] = { + { .exti = 0, .irq_parent = 6 }, { .exti = 1, .irq_parent = 7 }, { .exti = 2, .irq_parent = 8 }, { .exti = 3, .irq_parent = 9 },