Changes in kernel/arch/ia64/src/interrupt.c [63e27ef:416ef49] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/interrupt.c
r63e27ef r416ef49 35 35 36 36 #include <arch/interrupt.h> 37 #include <assert.h>38 37 #include <interrupt.h> 39 38 #include <ddi/irq.h> 40 39 #include <panic.h> 41 40 #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.