]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
mailbox: pcc: Remove spurious IRQF_ONESHOT usage
authorMark Brown <broonie@kernel.org>
Fri, 16 Jan 2026 14:07:40 +0000 (14:07 +0000)
committerJassi Brar <jassisinghbrar@gmail.com>
Sun, 25 Jan 2026 00:42:33 +0000 (18:42 -0600)
commit673327028cd61db68a1e0c708be2e302c082adf9
treebffe276bf41ca8b3a6459ec497ce0ee2053e9a62
parent244d11ae7d12514089eb481589d5d7d2de4572ef
mailbox: pcc: Remove spurious IRQF_ONESHOT usage

The PCC code currently specifies IRQF_ONESHOT if the interrupt could
potentially be shared but doesn't actually use request_threaded_irq() and
the interrupt handler does not use IRQ_WAKE_THREAD so IRQF_ONESHOT is
never relevant. Since commit aef30c8d569c ("genirq: Warn about using
IRQF_ONESHOT without a threaded handler") specifying it has resulted in a
WARN_ON(), fix this by removing IRQF_ONESHOT.

Reported-by: Aishwarya TCV <Aishwarya.TCV@arm.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Reviewed-by: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: Jassi Brar <jassisinghbrar@gmail.com>
drivers/mailbox/pcc.c