Changes in kernel/arch/ia64/src/interrupt.c [416ef49:63e27ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/interrupt.c
r416ef49 r63e27ef 35 35 36 36 #include <arch/interrupt.h> 37 #include <assert.h> 37 38 #include <interrupt.h> 38 39 #include <ddi/irq.h> 39 40 #include <panic.h> 40 41 #include <print.h> 41 #include <debug.h>42 42 #include <console/console.h> 43 43 #include <typedefs.h> … … 123 123 static const char *vector_to_string(unsigned int n) 124 124 { 125 ASSERT(n <= VECTOR_MAX);125 assert(n <= VECTOR_MAX); 126 126 127 127 if (n >= VECTORS_16_BUNDLE_START)
Note:
See TracChangeset
for help on using the changeset viewer.