Changeset b39eb79 in mainline for kernel/arch/ia64/src/ia64.c
- Timestamp:
- 2011-12-26T17:21:21Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9b56a8dd
- Parents:
- cf5c05c0 (diff), 7e1b130 (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/ia64/src/ia64.c
rcf5c05c0 rb39eb79 34 34 35 35 #include <arch.h> 36 #include <arch/drivers/ski.h>37 #include <arch/drivers/it.h>38 #include <arch/interrupt.h>39 #include <arch/barrier.h>40 #include <arch/asm.h>41 #include <arch/register.h>42 36 #include <typedefs.h> 43 #include <arch/context.h> 44 #include <arch/stack.h> 45 #include <arch/mm/page.h> 37 #include <errno.h> 46 38 #include <interrupt.h> 47 #include <mm/as.h>48 #include <config.h>49 39 #include <macros.h> 40 #include <str.h> 50 41 #include <userspace.h> 51 42 #include <console/console.h> 52 #include <abi/proc/uarg.h>53 43 #include <syscall/syscall.h> 54 #include <ddi/irq.h> 55 #include <arch/bootinfo.h> 44 #include <sysinfo/sysinfo.h> 45 #include <arch/drivers/it.h> 46 #include <arch/drivers/kbd.h> 47 #include <genarch/drivers/ega/ega.h> 48 #include <genarch/drivers/i8042/i8042.h> 49 #include <genarch/drivers/ns16550/ns16550.h> 56 50 #include <genarch/drivers/legacy/ia32/io.h> 57 #include <genarch/drivers/ega/ega.h>58 51 #include <genarch/kbrd/kbrd.h> 59 52 #include <genarch/srln/srln.h> 60 #include <genarch/drivers/i8042/i8042.h>61 #include <genarch/drivers/ns16550/ns16550.h>62 #include <arch/drivers/kbd.h>63 #include <smp/smp.h>64 #include <smp/ipi.h>65 #include <arch/atomic.h>66 #include <panic.h>67 #include <print.h>68 #include <sysinfo/sysinfo.h>69 #include <str.h>70 53 71 54 /* NS16550 as a COM 1 */ … … 262 245 * We use r13 (a.k.a. tp) for this purpose. 263 246 */ 264 sysarg_t sys_tls_set( sysarg_t addr)265 { 266 return 0;247 sysarg_t sys_tls_set(uintptr_t addr) 248 { 249 return EOK; 267 250 } 268 251 … … 270 253 { 271 254 pio_write_8((ioport8_t *)0x64, 0xfe); 272 while (1) 273 ; 255 while (1); 274 256 } 275 257
Note:
See TracChangeset
for help on using the changeset viewer.