diff options
Diffstat (limited to 'arch/arc/include/asm/processor.h')
| -rw-r--r-- | arch/arc/include/asm/processor.h | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/arch/arc/include/asm/processor.h b/arch/arc/include/asm/processor.h index 4104a0839214..d400a2161935 100644 --- a/arch/arc/include/asm/processor.h +++ b/arch/arc/include/asm/processor.h @@ -27,6 +27,13 @@ struct arc_fpu {  };  #endif +#ifdef CONFIG_ARC_PLAT_EZNPS +struct eznps_dp { +	unsigned int eflags; +	unsigned int gpa1; +}; +#endif +  /* Arch specific stuff which needs to be saved per task.   * However these items are not so important so as to earn a place in   * struct thread_info @@ -38,6 +45,9 @@ struct thread_struct {  #ifdef CONFIG_ARC_FPU_SAVE_RESTORE  	struct arc_fpu fpu;  #endif +#ifdef CONFIG_ARC_PLAT_EZNPS +	struct eznps_dp dp; +#endif  };  #define INIT_THREAD  {                          \ |