diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-11-08 23:40:50 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-27 23:18:40 -0500 |
commit | 114f132975ae8db3caa0c3420dc1083bae8d3757 (patch) | |
tree | c7a8eb05efd21c09d4cd46f64fbab17fb5e8b5ff /include | |
parent | f64ee87614e80ca270de0b80c5164ab05f4f1d98 (diff) |
sh: SH-5 version of current_thread_info().
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-sh/thread_info.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/asm-sh/thread_info.h b/include/asm-sh/thread_info.h index 1f7e1deb8d92..d49ee9d868e5 100644 --- a/include/asm-sh/thread_info.h +++ b/include/asm-sh/thread_info.h | |||
@@ -74,8 +74,10 @@ register unsigned long current_stack_pointer asm("r15") __attribute_used__; | |||
74 | static inline struct thread_info *current_thread_info(void) | 74 | static inline struct thread_info *current_thread_info(void) |
75 | { | 75 | { |
76 | struct thread_info *ti; | 76 | struct thread_info *ti; |
77 | #ifdef CONFIG_CPU_HAS_SR_RB | 77 | #if defined(CONFIG_SUPERH64) |
78 | __asm__("stc r7_bank, %0" : "=r" (ti)); | 78 | __asm__ __volatile__ ("getcon cr17, %0" : "=r" (ti)); |
79 | #elif defined(CONFIG_CPU_HAS_SR_RB) | ||
80 | __asm__ __volatile__ ("stc r7_bank, %0" : "=r" (ti)); | ||
79 | #else | 81 | #else |
80 | unsigned long __dummy; | 82 | unsigned long __dummy; |
81 | 83 | ||