Changeset a52e2f4 in mainline for kernel/arch/sparc64/src/dummy.S


Ignore:
Timestamp:
2016-04-23T20:27:28Z (8 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0407636
Parents:
27f67f5
Message:

sparc64: use asmtool.h macros for defining symbols

File:
1 moved

Legend:

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

    r27f67f5 ra52e2f4  
    2727#
    2828
     29#include <abi/asmtool.h>
     30
    2931.text
    3032
    31 .global cpu_sleep
    32 .global sys_tls_set
    33 
    34 .global dummy
    35 
    36 cpu_sleep:              ! not supported by architecture
    37 sys_tls_set:            ! not needed on architecture
    38 
    39 dummy:
     33FUNCTION_BEGIN(cpu_sleep)
     34FUNCTION_BEGIN(sys_tls_set)
    4035        retl
    4136        nop
     37FUNCTION_END(cpu_sleep)
     38FUNCTION_END(sys_tls_set)
    4239
    43 .global cpu_halt
    44 cpu_halt:
     40FUNCTION_BEGIN(cpu_halt)
    4541        ba %xcc, cpu_halt
    4642        nop
     43FUNCTION_END(cpu_halt)
     44
Note: See TracChangeset for help on using the changeset viewer.