Changeset 92
- Timestamp:
- Jun 29, 2017, 12:12:28 PM (7 years ago)
- Location:
- trunk/hal
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/tsar_mips32/core/hal_remote.c
r72 r92 149 149 150 150 //////////////////////////////////// 151 void * hal_remote_lpt( xptr_t xp, 152 void * pt ) 151 void * hal_remote_lpt( xptr_t xp ) 153 152 { 154 153 return (void *)hal_remote_lw ( xp ); -
trunk/hal/x86_64/core/hal_remote.c
r72 r92 47 47 void * pt ) 48 48 { 49 x86_panic((char *)__func__);49 hal_remote_swd( xp , (uint64_t)pt ); 50 50 } 51 51 … … 65 65 } 66 66 67 void * hal_remote_lpt( xptr_t xp, 68 void * pt ) 67 void *hal_remote_lpt( xptr_t xp ) 69 68 { 70 x86_panic((char *)__func__); 71 return NULL; 69 return (void *)hal_remote_lwd( xp ); 72 70 } 73 71
Note: See TracChangeset
for help on using the changeset viewer.