Changeset 58775d30 in mainline for kernel/arch/sparc64/src/drivers/tick.c
- Timestamp:
- 2015-03-16T16:07:21Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2003739
- Parents:
- 6069061 (diff), 795e2bf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/sparc64/src/drivers/tick.c
r6069061 r58775d30 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.