Changes in kernel/arch/ia64/src/ia64.c [3a2f8aa:4872160] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/ia64.c
r3a2f8aa r4872160 40 40 #include <arch/asm.h> 41 41 #include <arch/register.h> 42 #include < arch/types.h>42 #include <typedefs.h> 43 43 #include <arch/context.h> 44 44 #include <arch/stack.h> … … 47 47 #include <mm/as.h> 48 48 #include <config.h> 49 #include <macros.h> 49 50 #include <userspace.h> 50 51 #include <console/console.h> … … 66 67 #include <print.h> 67 68 #include <sysinfo/sysinfo.h> 68 #include <str ing.h>69 #include <str.h> 69 70 70 71 /* NS16550 as a COM 1 */ … … 78 79 void arch_pre_main(void) 79 80 { 80 /* Setup usermode init tasks. */ 81 82 unsigned int i; 83 84 init.cnt = bootinfo->taskmap.count; 85 81 init.cnt = min3(bootinfo->taskmap.cnt, TASKMAP_MAX_RECORDS, CONFIG_INIT_TASKS); 82 size_t i; 86 83 for (i = 0; i < init.cnt; i++) { 87 84 init.tasks[i].addr = … … 212 209 (uintptr_t) I8042_BASE); 213 210 #endif 214 211 212 sysinfo_set_item_val("netif.dp8390.inr", NULL, IRQ_DP8390); 213 215 214 sysinfo_set_item_val("ia64_iospace", NULL, true); 216 215 sysinfo_set_item_val("ia64_iospace.address", NULL, true);
Note:
See TracChangeset
for help on using the changeset viewer.