diff options
author | Mikael Starvik <mikael.starvik@axis.com> | 2005-07-27 14:44:44 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-27 19:26:01 -0400 |
commit | 51533b615e605d86154ec1b4e585c8ca1b0b15b7 (patch) | |
tree | 4a6d7d8494d2017632d83624fb71b36031e0e7e5 /include/asm-cris/arch-v32/thread_info.h | |
parent | 5d01e6ce785884a5db5792cd2e5bb36fa82fe23c (diff) |
[PATCH] CRIS update: new subarchitecture v32
New CRIS sub architecture named v32.
From: Dave Jones <davej@redhat.com>
Fix swapped kmalloc args
Signed-off-by: Mikael Starvik <starvik@axis.com>
Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-cris/arch-v32/thread_info.h')
-rw-r--r-- | include/asm-cris/arch-v32/thread_info.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/asm-cris/arch-v32/thread_info.h b/include/asm-cris/arch-v32/thread_info.h new file mode 100644 index 000000000000..a7a182307da0 --- /dev/null +++ b/include/asm-cris/arch-v32/thread_info.h | |||
@@ -0,0 +1,13 @@ | |||
1 | #ifndef _ASM_CRIS_ARCH_THREAD_INFO_H | ||
2 | #define _ASM_CRIS_ARCH_THREAD_INFO_H | ||
3 | |||
4 | /* Return a thread_info struct. */ | ||
5 | extern inline struct thread_info *current_thread_info(void) | ||
6 | { | ||
7 | struct thread_info *ti; | ||
8 | |||
9 | __asm__ __volatile__ ("and.d $sp, %0" : "=r" (ti) : "0" (~8191UL)); | ||
10 | return ti; | ||
11 | } | ||
12 | |||
13 | #endif /* _ASM_CRIS_ARCH_THREAD_INFO_H */ | ||