Changeset b66cc97 in mainline for kernel/arch/ppc32/src/dummy.S


Ignore:
Timestamp:
2016-04-24T08:00:09Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
38ad239
Parents:
0407636
Message:

ppc32: use asmtool.h macros for defining symbols

File:
1 moved

Legend:

Unmodified
Added
Removed
  • kernel/arch/ppc32/src/dummy.S

    r0407636 rb66cc97  
    2727#
    2828
     29#include <abi/asmtool.h>
     30
    2931.text
    3032
    31 .global asm_delay_loop
    32 .global sys_tls_set
    33 .global cpu_halt
     33FUNCTION_BEGIN(sys_tls_set)
     34        b sys_tls_set
     35FUNCTION_END(sys_tls_set)
    3436
    35 sys_tls_set:
    36         b sys_tls_set
     37FUNCTION_BEGIN(asm_delay_loop)
     38        blr
     39FUNCTION_END(asm_delay_loop)
    3740
    38 asm_delay_loop:
    39         blr
    40 
    41 cpu_halt:
     41FUNCTION_BEGIN(cpu_halt)
    4242        b cpu_halt
     43FUNCTION_END(cpu_halt)
Note: See TracChangeset for help on using the changeset viewer.