diff options
author | Mike Frysinger <vapier.adi@gmail.com> | 2008-10-09 03:32:18 -0400 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-10-09 03:32:18 -0400 |
commit | 47664c1f86c833c4b6398885fdb2b80fc4945c6a (patch) | |
tree | 8aa0c1433735e152b8076f099a798f51f16e94e2 /arch | |
parent | f5a817e3f707759882e423060badd2f2e52b66a4 (diff) |
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>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/blackfin/mach-common/entry.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/blackfin/mach-common/entry.S b/arch/blackfin/mach-common/entry.S index 76c42d3b5e85..c13fa8da28c7 100644 --- a/arch/blackfin/mach-common/entry.S +++ b/arch/blackfin/mach-common/entry.S | |||
@@ -704,6 +704,9 @@ ENTRY(_system_call) | |||
704 | rts; | 704 | rts; |
705 | ENDPROC(_system_call) | 705 | ENDPROC(_system_call) |
706 | 706 | ||
707 | /* Do not mark as ENTRY() to avoid error in assembler ... | ||
708 | * this symbol need not be global anyways, so ... | ||
709 | */ | ||
707 | _sys_trace: | 710 | _sys_trace: |
708 | call _syscall_trace; | 711 | call _syscall_trace; |
709 | 712 | ||