From bd22859d28e77fccb35439ca1929366791befe5a Mon Sep 17 00:00:00 2001 From: Catalin Marinas Date: Mon, 10 Sep 2012 12:43:28 +0100 Subject: arm64: Make some symbols in kernel/entry.S static el0_svc and ret_from_exception do not need to be visible outside the kernel/entry.S file. This patch removes the ENTRY() macro around them. Signed-off-by: Catalin Marinas --- arch/arm64/kernel/entry.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm64/kernel/entry.S b/arch/arm64/kernel/entry.S index ed2e58fbd2f..38cf853a366 100644 --- a/arch/arm64/kernel/entry.S +++ b/arch/arm64/kernel/entry.S @@ -521,7 +521,7 @@ ENDPROC(el0_irq) /* * This is the return code to user mode for abort handlers */ -ENTRY(ret_from_exception) +ret_from_exception: get_thread_info tsk b ret_to_user ENDPROC(ret_from_exception) @@ -617,7 +617,7 @@ ENDPROC(ret_from_fork) * SVC handler. */ .align 6 -ENTRY(el0_svc) +el0_svc: adrp stbl, sys_call_table // load syscall table pointer uxtw scno, w8 // syscall number in w8 mov sc_nr, #__NR_syscalls -- cgit v1.2.3