diff options
author | Michal Simek <monstr@monstr.eu> | 2010-08-06 06:51:54 (GMT) |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2010-10-21 05:51:26 (GMT) |
commit | 06d1973490199d38a65029101199e04004fbe8f3 (patch) | |
tree | e3c003ae04b9f3ab78a6f8959b8d1657ce1a58c5 /arch/microblaze | |
parent | 68c6ac3366764730c6cc6bcc7003b233bd6b6571 (diff) | |
download | linux-06d1973490199d38a65029101199e04004fbe8f3.tar.xz |
microblaze: remove unused TIF_KERNEL_TRACE
TIF_KERNEL_TRACE is not used anywhere.
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze')
-rw-r--r-- | arch/microblaze/include/asm/thread_info.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/microblaze/include/asm/thread_info.h b/arch/microblaze/include/asm/thread_info.h index 21e7997..b73da2a 100644 --- a/arch/microblaze/include/asm/thread_info.h +++ b/arch/microblaze/include/asm/thread_info.h @@ -127,9 +127,6 @@ static inline struct thread_info *current_thread_info(void) #define TIF_SECCOMP 10 /* secure computing */ #define TIF_FREEZE 14 /* Freezing for suspend */ -/* FIXME change in entry.S */ -#define TIF_KERNEL_TRACE 8 /* kernel trace active */ - /* true if poll_idle() is polling TIF_NEED_RESCHED */ #define TIF_POLLING_NRFLAG 16 @@ -143,7 +140,6 @@ static inline struct thread_info *current_thread_info(void) #define _TIF_FREEZE (1 << TIF_FREEZE) #define _TIF_SYSCALL_AUDIT (1 << TIF_SYSCALL_AUDIT) #define _TIF_SECCOMP (1 << TIF_SECCOMP) -#define _TIF_KERNEL_TRACE (1 << TIF_KERNEL_TRACE) /* work to do in syscall trace */ #define _TIF_WORK_SYSCALL_MASK (_TIF_SYSCALL_TRACE | _TIF_SINGLESTEP | \ |