mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 16:44:58 +02:00
staging: wfx: flags for SPI IRQ were ignored
The flags declared in the DT were not forwarded to request_irq().
Fixes: a7efb62509 ("staging: wfx: use threaded IRQ with SPI")
Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Link: https://lore.kernel.org/r/20220225112405.355599-11-Jerome.Pouiller@silabs.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c86176d513
commit
fe5c03d478
|
|
@ -162,7 +162,7 @@ static int wfx_spi_irq_subscribe(void *priv)
|
|||
flags = IRQF_TRIGGER_HIGH;
|
||||
flags |= IRQF_ONESHOT;
|
||||
return devm_request_threaded_irq(&bus->func->dev, bus->func->irq, NULL,
|
||||
wfx_spi_irq_handler, IRQF_ONESHOT, "wfx", bus);
|
||||
wfx_spi_irq_handler, flags, "wfx", bus);
|
||||
}
|
||||
|
||||
static int wfx_spi_irq_unsubscribe(void *priv)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user