diff options
author | Richard Weinberger <richard@nod.at> | 2014-07-13 11:21:49 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2015-04-12 14:58:25 -0400 |
commit | 6140de5aae4a490e7320215b4197874e37e0969c (patch) | |
tree | a06134f2e7170c39d9e0dc5ca71dbdda70356498 /arch/microblaze/include | |
parent | a0075cd1cb79971ed6162e27fdb2ae76fc3008cf (diff) |
microblaze: 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/microblaze/include')
-rw-r--r-- | arch/microblaze/include/asm/thread_info.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/microblaze/include/asm/thread_info.h b/arch/microblaze/include/asm/thread_info.h index b699fbd7de4a..383f387b4eee 100644 --- a/arch/microblaze/include/asm/thread_info.h +++ b/arch/microblaze/include/asm/thread_info.h | |||
@@ -65,7 +65,6 @@ typedef struct { | |||
65 | 65 | ||
66 | struct thread_info { | 66 | struct thread_info { |
67 | struct task_struct *task; /* main task structure */ | 67 | struct task_struct *task; /* main task structure */ |
68 | struct exec_domain *exec_domain; /* execution domain */ | ||
69 | unsigned long flags; /* low level flags */ | 68 | unsigned long flags; /* low level flags */ |
70 | unsigned long status; /* thread-synchronous flags */ | 69 | unsigned long status; /* thread-synchronous flags */ |
71 | __u32 cpu; /* current CPU */ | 70 | __u32 cpu; /* current CPU */ |
@@ -81,7 +80,6 @@ struct thread_info { | |||
81 | #define INIT_THREAD_INFO(tsk) \ | 80 | #define INIT_THREAD_INFO(tsk) \ |
82 | { \ | 81 | { \ |
83 | .task = &tsk, \ | 82 | .task = &tsk, \ |
84 | .exec_domain = &default_exec_domain, \ | ||
85 | .flags = 0, \ | 83 | .flags = 0, \ |
86 | .cpu = 0, \ | 84 | .cpu = 0, \ |
87 | .preempt_count = INIT_PREEMPT_COUNT, \ | 85 | .preempt_count = INIT_PREEMPT_COUNT, \ |