diff options
author | Richard Weinberger <richard@nod.at> | 2014-07-13 11:37:45 -0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2015-04-12 14:58:25 -0400 |
commit | daea906dd31843edc062faba82cd43c8b720305d (patch) | |
tree | 5bbf09b0674af4c16febe881b365e9e98b0c379c /arch/sh/kernel/irq.c | |
parent | 6a32591a4a38948d785a3bb0dac32d5be1f76354 (diff) |
sh: 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/sh/kernel/irq.c')
-rw-r--r-- | arch/sh/kernel/irq.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/sh/kernel/irq.c b/arch/sh/kernel/irq.c index 65a1ecd77f96..eb10ff84015c 100644 --- a/arch/sh/kernel/irq.c +++ b/arch/sh/kernel/irq.c | |||
@@ -124,7 +124,6 @@ void irq_ctx_init(int cpu) | |||
124 | 124 | ||
125 | irqctx = (union irq_ctx *)&hardirq_stack[cpu * THREAD_SIZE]; | 125 | irqctx = (union irq_ctx *)&hardirq_stack[cpu * THREAD_SIZE]; |
126 | irqctx->tinfo.task = NULL; | 126 | irqctx->tinfo.task = NULL; |
127 | irqctx->tinfo.exec_domain = NULL; | ||
128 | irqctx->tinfo.cpu = cpu; | 127 | irqctx->tinfo.cpu = cpu; |
129 | irqctx->tinfo.preempt_count = HARDIRQ_OFFSET; | 128 | irqctx->tinfo.preempt_count = HARDIRQ_OFFSET; |
130 | irqctx->tinfo.addr_limit = MAKE_MM_SEG(0); | 129 | irqctx->tinfo.addr_limit = MAKE_MM_SEG(0); |
@@ -133,7 +132,6 @@ void irq_ctx_init(int cpu) | |||
133 | 132 | ||
134 | irqctx = (union irq_ctx *)&softirq_stack[cpu * THREAD_SIZE]; | 133 | irqctx = (union irq_ctx *)&softirq_stack[cpu * THREAD_SIZE]; |
135 | irqctx->tinfo.task = NULL; | 134 | irqctx->tinfo.task = NULL; |
136 | irqctx->tinfo.exec_domain = NULL; | ||
137 | irqctx->tinfo.cpu = cpu; | 135 | irqctx->tinfo.cpu = cpu; |
138 | irqctx->tinfo.preempt_count = 0; | 136 | irqctx->tinfo.preempt_count = 0; |
139 | irqctx->tinfo.addr_limit = MAKE_MM_SEG(0); | 137 | irqctx->tinfo.addr_limit = MAKE_MM_SEG(0); |