aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-arm/thread_info.h
diff options
context:
space:
mode:
authorAl Viro <viro@ftp.linux.org.uk>2006-01-12 04:05:56 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-12 12:08:55 -0500
commite7c1b32fd354c34c4dceb1736a485bc5d91f7c43 (patch)
tree165e0b0f4cf5cc3e393e66fedf4e81d90cf7297c /include/asm-arm/thread_info.h
parent68f8b1f8f113fcbc8d8e835f174b97cdaf96af20 (diff)
[PATCH] arm: task_thread_info()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-arm/thread_info.h')
-rw-r--r--include/asm-arm/thread_info.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-arm/thread_info.h b/include/asm-arm/thread_info.h
index 7c98557b717f..46a4e9890e58 100644
--- a/include/asm-arm/thread_info.h
+++ b/include/asm-arm/thread_info.h
@@ -100,9 +100,9 @@ extern void free_thread_info(struct thread_info *);
100#define put_thread_info(ti) put_task_struct((ti)->task) 100#define put_thread_info(ti) put_task_struct((ti)->task)
101 101
102#define thread_saved_pc(tsk) \ 102#define thread_saved_pc(tsk) \
103 ((unsigned long)(pc_pointer((tsk)->thread_info->cpu_context.pc))) 103 ((unsigned long)(pc_pointer(task_thread_info(tsk)->cpu_context.pc)))
104#define thread_saved_fp(tsk) \ 104#define thread_saved_fp(tsk) \
105 ((unsigned long)((tsk)->thread_info->cpu_context.fp)) 105 ((unsigned long)(task_thread_info(tsk)->cpu_context.fp))
106 106
107extern void iwmmxt_task_disable(struct thread_info *); 107extern void iwmmxt_task_disable(struct thread_info *);
108extern void iwmmxt_task_copy(struct thread_info *, void *); 108extern void iwmmxt_task_copy(struct thread_info *, void *);