mirror of
https://github.com/CTCaer/hekate
synced 2024-11-16 08:59:26 +00:00
bdk: irq: disable irq if handler error
This commit is contained in:
parent
8bf3bee08b
commit
1a98e3a702
1 changed files with 2 additions and 2 deletions
|
@ -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 a new issue