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 <vapier.adi@gmail.com> Signed-off-by: Bryan Wu <cooloney@kernel.org>
This commit is contained in:
parent
f5a817e3f7
commit
47664c1f86
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue