diff options
author | Christian Cunningham <cc@localhost> | 2022-03-25 12:34:00 -0700 |
---|---|---|
committer | Christian Cunningham <cc@localhost> | 2022-03-25 12:34:00 -0700 |
commit | 357102ee9ccaea7e26c95e409c4c364a63aed423 (patch) | |
tree | 04f26bac4f3ed3244a32b33b763049fc7c97f707 /kernel/cpu | |
parent | 667e5e8cf02e3d5c530d76fa1921bafdd460b70c (diff) |
19200 baud over 3MHz
Diffstat (limited to 'kernel/cpu')
-rw-r--r-- | kernel/cpu/irq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/cpu/irq.c b/kernel/cpu/irq.c index 09b3346..f718b7e 100644 --- a/kernel/cpu/irq.c +++ b/kernel/cpu/irq.c @@ -114,6 +114,7 @@ unsigned long c_fiq_handler(void) if (source & (1 << 3) && irqs[LOCAL_TIMER_IRQ].handler != 0) { add_thread(irqs[LOCAL_TIMER_IRQ].handler, 0, 1); write_cntv_tval(cntfrq); + return 1; } return 0; } |