Changeset 92


Ignore:
Timestamp:
Jun 29, 2017, 12:12:28 PM (7 years ago)
Author:
max@…
Message:

fix the definition of hal_remote_spt, and add the *pt ops on
x86_64

Location:
trunk/hal
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/hal/tsar_mips32/core/hal_remote.c

    r72 r92  
    149149
    150150////////////////////////////////////
    151 void * hal_remote_lpt( xptr_t    xp,
    152                        void *    pt )
     151void * hal_remote_lpt( xptr_t    xp )
    153152{
    154153    return (void *)hal_remote_lw ( xp );
  • trunk/hal/x86_64/core/hal_remote.c

    r72 r92  
    4747                     void *      pt )
    4848{
    49         x86_panic((char *)__func__);
     49        hal_remote_swd( xp , (uint64_t)pt );
    5050}
    5151
     
    6565}
    6666
    67 void * hal_remote_lpt( xptr_t    xp,
    68                        void *    pt )
     67void *hal_remote_lpt( xptr_t    xp )
    6968{
    70         x86_panic((char *)__func__);
    71         return NULL;
     69        return (void *)hal_remote_lwd( xp );
    7270}
    7371
Note: See TracChangeset for help on using the changeset viewer.