Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/arm32/src/context.S

    re98f1c3e r9d58539  
    2727#
    2828
    29 #include <abi/asmtool.h>
    30 
    3129.text   
    3230
    33 FUNCTION_BEGIN(context_save_arch)
     31.global context_save_arch
     32.global context_restore_arch
     33
     34context_save_arch:
    3435        stmfd sp!, {r1}
    3536        mrs r1, cpsr
     
    4344        mov r0, #1
    4445        mov pc, lr
    45 FUNCTION_END(context_save_arch)
    4646
    47 FUNCTION_BEGIN(context_restore_arch)
     47
     48context_restore_arch:
    4849        ldmia r0!, {r4}
    4950        mrs r5, cpsr
     
    5758        mov r0, #0
    5859        mov pc, lr
    59 FUNCTION_END(context_restore_arch)
Note: See TracChangeset for help on using the changeset viewer.