From: Mike Frysinger Date: Thu, 9 Oct 2008 07:32:18 +0000 (+0800) Subject: Blackfin arch: give sys_strace proper entry markings X-Git-Tag: v2.6.28-rc1~604^2~25 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=47664c1f86c833c4b6398885fdb2b80fc4945c6a;hp=f5a817e3f707759882e423060badd2f2e52b66a4;p=linux-2.6-omap-h63xx.git Blackfin arch: give sys_strace proper entry markings a global _sys_trace will cause the assembler to fail, it should be fixed in toolchain side firstly. Signed-off-by: Mike Frysinger Signed-off-by: Bryan Wu --- diff --git a/arch/blackfin/mach-common/entry.S b/arch/blackfin/mach-common/entry.S index 76c42d3b5e8..c13fa8da28c 100644 --- a/arch/blackfin/mach-common/entry.S +++ b/arch/blackfin/mach-common/entry.S @@ -704,6 +704,9 @@ ENTRY(_system_call) rts; ENDPROC(_system_call) +/* Do not mark as ENTRY() to avoid error in assembler ... + * this symbol need not be global anyways, so ... + */ _sys_trace: call _syscall_trace;