aboutsummaryrefslogtreecommitdiffstats
path: root/arch/m68k/platform/68360/entry.S
diff options
context:
space:
mode:
authorGreg Ungerer <gerg@uclinux.org>2011-03-29 01:55:36 -0400
committerGreg Ungerer <gerg@uclinux.org>2011-05-24 01:17:18 -0400
commitaa4d1f897f6a7ffdb3654a2152b60d9d832951a3 (patch)
tree39fb1190c24936a3e0fce96b0c0a4023e1bbbd53 /arch/m68k/platform/68360/entry.S
parenta697dc934f52355494b746d7b5568227e0910ae8 (diff)
m68k: merge mmu and non-mmu versions of asm-offsets.c
It is strait forward to merge the mmu and non-mmu versions of asm-offstes.c. Some name changes are required for the preempt and thread_info.flags in the non-mmu entry.S assembler to make them consistent for both setups. Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68k/platform/68360/entry.S')
-rw-r--r--arch/m68k/platform/68360/entry.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/m68k/platform/68360/entry.S b/arch/m68k/platform/68360/entry.S
index 46c1b18c9dcb..50dcae66f6cd 100644
--- a/arch/m68k/platform/68360/entry.S
+++ b/arch/m68k/platform/68360/entry.S
@@ -76,7 +76,7 @@ ENTRY(system_call)
76 movel %sp,%d1 /* get thread_info pointer */ 76 movel %sp,%d1 /* get thread_info pointer */
77 andl #-THREAD_SIZE,%d1 77 andl #-THREAD_SIZE,%d1
78 movel %d1,%a2 78 movel %d1,%a2
79 btst #(TIF_SYSCALL_TRACE%8),%a2@(TI_FLAGS+(31-TIF_SYSCALL_TRACE)/8) 79 btst #(TIF_SYSCALL_TRACE%8),%a2@(TINFO_FLAGS+(31-TIF_SYSCALL_TRACE)/8)
80 jne do_trace 80 jne do_trace
81 cmpl #NR_syscalls,%d0 81 cmpl #NR_syscalls,%d0
82 jcc badsys 82 jcc badsys
@@ -103,12 +103,12 @@ Luser_return:
103 andl #-THREAD_SIZE,%d1 103 andl #-THREAD_SIZE,%d1
104 movel %d1,%a2 104 movel %d1,%a2
1051: 1051:
106 move %a2@(TI_FLAGS),%d1 /* thread_info->flags */ 106 move %a2@(TINFO_FLAGS),%d1 /* thread_info->flags */
107 jne Lwork_to_do 107 jne Lwork_to_do
108 RESTORE_ALL 108 RESTORE_ALL
109 109
110Lwork_to_do: 110Lwork_to_do:
111 movel %a2@(TI_FLAGS),%d1 /* thread_info->flags */ 111 movel %a2@(TINFO_FLAGS),%d1 /* thread_info->flags */
112 btst #TIF_NEED_RESCHED,%d1 112 btst #TIF_NEED_RESCHED,%d1
113 jne reschedule 113 jne reschedule
114 114