diff options
Diffstat (limited to 'include/asm-um/processor-generic.h')
-rw-r--r-- | include/asm-um/processor-generic.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/asm-um/processor-generic.h b/include/asm-um/processor-generic.h index d99bbddffdb..70c8183d1db 100644 --- a/include/asm-um/processor-generic.h +++ b/include/asm-um/processor-generic.h @@ -34,20 +34,10 @@ struct thread_struct { void *exec_buf; struct arch_thread arch; union { -#ifdef CONFIG_MODE_TT - struct { - int extern_pid; - int tracing; - int switch_pipe[2]; - int vm_seq; - } tt; -#endif -#ifdef CONFIG_MODE_SKAS struct { jmp_buf switch_buf; int mm_count; } skas; -#endif } mode; struct { int op; @@ -136,12 +126,8 @@ extern struct cpuinfo_um cpu_data[]; #endif -#ifdef CONFIG_MODE_SKAS #define KSTK_REG(tsk, reg) \ get_thread_reg(reg, &tsk->thread.mode.skas.switch_buf) -#else -#define KSTK_REG(tsk, reg) (0xbadbabe) -#endif #define get_wchan(p) (0) #endif |