Changeset 82122f3 in mainline for kernel/arch/ia64/src/ia64.c
- Timestamp:
- 2010-12-17T14:51:41Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1f383dde
- Parents:
- 692f13e4 (diff), 11658b64 (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
r692f13e4 r82122f3 104 104 static void iosapic_init(void) 105 105 { 106 uint64_t IOSAPIC = PA2KA(( unative_t)(iosapic_base)) | FW_OFFSET;106 uint64_t IOSAPIC = PA2KA((sysarg_t)(iosapic_base)) | FW_OFFSET; 107 107 int i; 108 108 … … 251 251 * We use r13 (a.k.a. tp) for this purpose. 252 252 */ 253 unative_t sys_tls_set(unative_t addr)253 sysarg_t sys_tls_set(sysarg_t addr) 254 254 { 255 255 return 0; … … 274 274 void *arch_construct_function(fncptr_t *fptr, void *addr, void *caller) 275 275 { 276 fptr->fnc = ( unative_t) addr;277 fptr->gp = (( unative_t *) caller)[1];276 fptr->fnc = (sysarg_t) addr; 277 fptr->gp = ((sysarg_t *) caller)[1]; 278 278 279 279 return (void *) fptr;
Note:
See TracChangeset
for help on using the changeset viewer.