bdk: irq: disable irq if handler error

This commit is contained in:
CTCaer 2024-10-04 21:53:17 +03:00
parent 8bf3bee08b
commit 1a98e3a702

View file

@ -124,8 +124,8 @@ static irq_status_t _irq_handle_source(u32 irq)
}
}
// Do not re-enable if not handled.
if (status == IRQ_NONE)
// Do not re-enable if not handled or error.
if (status != IRQ_HANDLED)
return status;
if (irqs[idx].flags & IRQ_FLAG_ONE_OFF)