mirror of
https://github.com/CTCaer/hekate.git
synced 2024-12-26 09:17:21 +00:00
bdk: irq: disable irq if handler error
This commit is contained in:
parent
8bf3bee08b
commit
1a98e3a702
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user