Skip to content

Commit a82bf78

Browse files
Sebastian Andrzej SiewiorThomas Gleixner
authored andcommitted
ARM: versatile: Remove IRQF_ONESHOT
Passing IRQF_ONESHOT ensures that the interrupt source is masked until the secondary (threaded) handler is done. If only a primary handler is used then the flag makes no sense because the interrupt can not fire (again) while its handler is running. Revert adding IRQF_ONESHOT to irqflags. Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Thomas Gleixner <tglx@kernel.org> Acked-by: Sudeep Holla <sudeep.holla@arm.com> Acked-by: Linus Walleij <linusw@kernel.org> Link: https://patch.msgid.link/20260128095540.863589-9-bigeasy@linutronix.de
1 parent bd81f07 commit a82bf78

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • arch/arm/mach-versatile

arch/arm/mach-versatile/spc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -459,8 +459,8 @@ int __init ve_spc_init(void __iomem *baseaddr, u32 a15_clusid, int irq)
459459

460460
readl_relaxed(info->baseaddr + PWC_STATUS);
461461

462-
ret = request_irq(irq, ve_spc_irq_handler, IRQF_TRIGGER_HIGH
463-
| IRQF_ONESHOT, "vexpress-spc", info);
462+
ret = request_irq(irq, ve_spc_irq_handler, IRQF_TRIGGER_HIGH,
463+
"vexpress-spc", info);
464464
if (ret) {
465465
pr_err(SPCLOG "IRQ %d request failed\n", irq);
466466
kfree(info);

0 commit comments

Comments
 (0)