Changes in kernel/arch/sparc64/src/drivers/tick.c [9d58539:ec443d5] in mainline
- File:
-
- 1 edited
-
kernel/arch/sparc64/src/drivers/tick.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/drivers/tick.c
r9d58539 rec443d5 35 35 #include <arch/drivers/tick.h> 36 36 #include <arch/interrupt.h> 37 #include <arch/trap/interrupt.h> 37 38 #include <arch/sparc64.h> 38 39 #include <arch/asm.h> … … 51 52 softint_reg_t clear; 52 53 53 interrupt_register(14, "tick_int", tick_interrupt);54 54 compare.int_dis = false; 55 55 compare.tick_cmpr = tick_counter_read() + … … 79 79 /** Process tick interrupt. 80 80 * 81 * @param n Interrupt Level (14, can be ignored)81 * @param n Trap type (0x4e, can be ignored) 82 82 * @param istate Interrupted state. 83 83 * … … 93 93 * Make sure we are servicing interrupt_level_14 94 94 */ 95 ASSERT(n == 14);95 ASSERT(n == TT_INTERRUPT_LEVEL_14); 96 96 97 97 /*
Note:
See TracChangeset
for help on using the changeset viewer.
