diff options
Diffstat (limited to 'arch/avr32/include/asm/thread_info.h')
| -rw-r--r-- | arch/avr32/include/asm/thread_info.h | 2 | 
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/avr32/include/asm/thread_info.h b/arch/avr32/include/asm/thread_info.h index 7a9c03dcb0b..e5deda4691d 100644 --- a/arch/avr32/include/asm/thread_info.h +++ b/arch/avr32/include/asm/thread_info.h @@ -85,7 +85,6 @@ static inline struct thread_info *current_thread_info(void)  #define TIF_RESTORE_SIGMASK	7	/* restore signal mask in do_signal */  #define TIF_CPU_GOING_TO_SLEEP	8	/* CPU is entering sleep 0 mode */  #define TIF_NOTIFY_RESUME	9	/* callback before returning to user */ -#define TIF_FREEZE		29  #define TIF_DEBUG		30	/* debugging enabled */  #define TIF_USERSPACE		31      /* true if FS sets userspace */ @@ -98,7 +97,6 @@ static inline struct thread_info *current_thread_info(void)  #define _TIF_RESTORE_SIGMASK	(1 << TIF_RESTORE_SIGMASK)  #define _TIF_CPU_GOING_TO_SLEEP (1 << TIF_CPU_GOING_TO_SLEEP)  #define _TIF_NOTIFY_RESUME	(1 << TIF_NOTIFY_RESUME) -#define _TIF_FREEZE		(1 << TIF_FREEZE)  /* Note: The masks below must never span more than 16 bits! */  |