Skip to content

Commit c91db23

Browse files
brooniectmarinas
authored andcommitted
arm64: vdso: Convert to modern assembler annotations
In an effort to clarify and simplify the annotation of assembly functions new macros have been introduced. These replace ENTRY and ENDPROC with two different annotations for normal functions and those with unusual calling conventions. Convert the assembly function in the arm64 VDSO to the new macros. Signed-off-by: Mark Brown <[email protected]> Signed-off-by: Catalin Marinas <[email protected]>
1 parent 1242b9b commit c91db23

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arch/arm64/kernel/vdso/sigreturn.S

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
.text
1515

1616
nop
17-
ENTRY(__kernel_rt_sigreturn)
17+
SYM_FUNC_START(__kernel_rt_sigreturn)
1818
.cfi_startproc
1919
.cfi_signal_frame
2020
.cfi_def_cfa x29, 0
@@ -23,4 +23,4 @@ ENTRY(__kernel_rt_sigreturn)
2323
mov x8, #__NR_rt_sigreturn
2424
svc #0
2525
.cfi_endproc
26-
ENDPROC(__kernel_rt_sigreturn)
26+
SYM_FUNC_END(__kernel_rt_sigreturn)

0 commit comments

Comments
 (0)