Make GET_SAVED_SP lowercase.
[linux-2.6/linux-mips.git] / include / asm-arm26 / current.h
blobb3d68cd03f7357fe1567ce3ee9d07fc117ede623
1 #ifndef _ASMARM_CURRENT_H
2 #define _ASMARM_CURRENT_H
4 #include <linux/thread_info.h>
6 static inline struct task_struct *get_current(void) __attribute__ (( __const__ ));
8 static inline struct task_struct *get_current(void)
10 return current_thread_info()->task;
13 #define current (get_current())
15 #endif /* _ASMARM_CURRENT_H */