diff options
author | Richard Weinberger <richard@nod.at> | 2014-07-13 19:21:49 +0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2015-04-12 21:58:25 +0300 |
commit | 6140de5aae4a490e7320215b4197874e37e0969c (patch) | |
tree | a06134f2e7170c39d9e0dc5ca71dbdda70356498 /arch/microblaze/include | |
parent | a0075cd1cb79971ed6162e27fdb2ae76fc3008cf (diff) | |
download | linux-6140de5aae4a490e7320215b4197874e37e0969c.tar.xz |
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 { 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 */ @@ -81,7 +80,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, \ |