diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-11-09 13:40:50 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-01-28 13:18:40 +0900 |
commit | 114f132975ae8db3caa0c3420dc1083bae8d3757 (patch) | |
tree | c7a8eb05efd21c09d4cd46f64fbab17fb5e8b5ff /include/asm-sh/thread_info.h | |
parent | f64ee87614e80ca270de0b80c5164ab05f4f1d98 (diff) | |
download | blackbird-op-linux-114f132975ae8db3caa0c3420dc1083bae8d3757.tar.gz blackbird-op-linux-114f132975ae8db3caa0c3420dc1083bae8d3757.zip |
sh: SH-5 version of current_thread_info().
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/asm-sh/thread_info.h')
-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__; static inline struct thread_info *current_thread_info(void) { struct thread_info *ti; -#ifdef CONFIG_CPU_HAS_SR_RB - __asm__("stc r7_bank, %0" : "=r" (ti)); +#if defined(CONFIG_SUPERH64) + __asm__ __volatile__ ("getcon cr17, %0" : "=r" (ti)); +#elif defined(CONFIG_CPU_HAS_SR_RB) + __asm__ __volatile__ ("stc r7_bank, %0" : "=r" (ti)); #else unsigned long __dummy; |