Ignore:
File:
1 edited

Legend:

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

    r36df4109 r9d58539  
    5151#include <memstr.h>
    5252
    53 static void abs32le_post_mm_init(void);
    54 
    55 arch_ops_t abs32le_ops = {
    56         .post_mm_init = abs32le_post_mm_init,
    57 };
    58 
    59 arch_ops_t *arch_ops = &abs32le_ops;
    60 
    6153char memcpy_from_uspace_failover_address;
    6254char memcpy_to_uspace_failover_address;
    6355
    64 void abs32le_post_mm_init(void)
     56void arch_pre_mm_init(void)
     57{
     58}
     59
     60void arch_post_mm_init(void)
    6561{
    6662        if (config.cpu_active == 1) {
     
    7369}
    7470
     71void arch_post_cpu_init()
     72{
     73}
     74
     75void arch_pre_smp_init(void)
     76{
     77}
     78
     79void arch_post_smp_init(void)
     80{
     81}
     82
    7583void calibrate_delay_loop(void)
    7684{
     85}
     86
     87sysarg_t sys_tls_set(uintptr_t addr)
     88{
     89        return EOK;
    7790}
    7891
Note: See TracChangeset for help on using the changeset viewer.