summary refs log tree commit diff
path: root/arch/m32r/include
diff options
context:
space:
mode:
authorRichard Weinberger <richard@nod.at>2014-07-13 17:18:15 +0200
committerRichard Weinberger <richard@nod.at>2015-04-12 20:58:25 +0200
commit445a626afb7f8050ac290fee89d4d9d2ce43b3f2 (patch)
tree9dd2dba20d4469e16c2745824a72d037c9ef9266 /arch/m32r/include
parent37f078ff4c97ad143a6dc2adae31e20a3f780ca7 (diff)
downloadlinux-445a626afb7f8050ac290fee89d4d9d2ce43b3f2.tar.gz
m32r: Remove signal translation and exec_domain
As execution domain support is gone we can remove
signal translation from the signal code and remove
exec_domain from thread_info.

Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/m32r/include')
-rw-r--r--arch/m32r/include/asm/thread_info.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/m32r/include/asm/thread_info.h b/arch/m32r/include/asm/thread_info.h
index 034d1ab13029..f630d9c30b28 100644
--- a/arch/m32r/include/asm/thread_info.h
+++ b/arch/m32r/include/asm/thread_info.h
@@ -24,7 +24,6 @@
 
 struct thread_info {
 	struct task_struct	*task;		/* main task structure */
-	struct exec_domain	*exec_domain;	/* execution domain */
 	unsigned long		flags;		/* low level flags */
 	unsigned long		status;		/* thread-synchronous flags */
 	__u32			cpu;		/* current CPU */
@@ -50,7 +49,6 @@ struct thread_info {
 #define INIT_THREAD_INFO(tsk)			\
 {						\
 	.task		= &tsk,			\
-	.exec_domain	= &default_exec_domain,	\
 	.flags		= 0,			\
 	.cpu		= 0,			\
 	.preempt_count	= INIT_PREEMPT_COUNT,	\