Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/abs32le/src/abs32le.c

    r9d58539 r36df4109  
    5151#include <memstr.h>
    5252
     53static void abs32le_post_mm_init(void);
     54
     55arch_ops_t abs32le_ops = {
     56        .post_mm_init = abs32le_post_mm_init,
     57};
     58
     59arch_ops_t *arch_ops = &abs32le_ops;
     60
    5361char memcpy_from_uspace_failover_address;
    5462char memcpy_to_uspace_failover_address;
    5563
    56 void arch_pre_mm_init(void)
    57 {
    58 }
    59 
    60 void arch_post_mm_init(void)
     64void abs32le_post_mm_init(void)
    6165{
    6266        if (config.cpu_active == 1) {
     
    6973}
    7074
    71 void arch_post_cpu_init()
    72 {
    73 }
    74 
    75 void arch_pre_smp_init(void)
    76 {
    77 }
    78 
    79 void arch_post_smp_init(void)
    80 {
    81 }
    82 
    8375void calibrate_delay_loop(void)
    8476{
    85 }
    86 
    87 sysarg_t sys_tls_set(uintptr_t addr)
    88 {
    89         return EOK;
    9077}
    9178
Note: See TracChangeset for help on using the changeset viewer.