Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

irqchip/atmel-aic5: Add support for sam9x60 rtt fixup

Add support for SAM9X60 RTT fixup.

Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Reviewed-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Link: https://lore.kernel.org/r/1591779936-18577-2-git-send-email-claudiu.beznea@microchip.com

authored by

Claudiu Beznea and committed by
Marc Zyngier
293953d6 2f7a9bda

+7 -1
+7 -1
drivers/irqchip/irq-atmel-aic5.c
··· 310 310 aic_common_rtc_irq_fixup(); 311 311 } 312 312 313 + static void __init sam9x60_aic_irq_fixup(void) 314 + { 315 + aic_common_rtc_irq_fixup(); 316 + aic_common_rtt_irq_fixup(); 317 + } 318 + 313 319 static const struct of_device_id aic5_irq_fixups[] __initconst = { 314 320 { .compatible = "atmel,sama5d3", .data = sama5d3_aic_irq_fixup }, 315 321 { .compatible = "atmel,sama5d4", .data = sama5d3_aic_irq_fixup }, 316 - { .compatible = "microchip,sam9x60", .data = sama5d3_aic_irq_fixup }, 322 + { .compatible = "microchip,sam9x60", .data = sam9x60_aic_irq_fixup }, 317 323 { /* sentinel */ }, 318 324 }; 319 325