Changes in kernel/arch/sparc64/src/drivers/tick.c [ec443d5:9d58539] 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
rec443d5 r9d58539 35 35 #include <arch/drivers/tick.h> 36 36 #include <arch/interrupt.h> 37 #include <arch/trap/interrupt.h>38 37 #include <arch/sparc64.h> 39 38 #include <arch/asm.h> … … 52 51 softint_reg_t clear; 53 52 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 Trap type (0x4e, can be ignored)81 * @param n Interrupt Level (14, 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 == TT_INTERRUPT_LEVEL_14);95 ASSERT(n == 14); 96 96 97 97 /*
Note:
See TracChangeset
for help on using the changeset viewer.
