diff options
Diffstat (limited to 'arch/arc/kernel/asm-offsets.c')
-rw-r--r-- | arch/arc/kernel/asm-offsets.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/arc/kernel/asm-offsets.c b/arch/arc/kernel/asm-offsets.c index 7dcda7025241..6c3aa0edb9b5 100644 --- a/arch/arc/kernel/asm-offsets.c +++ b/arch/arc/kernel/asm-offsets.c | |||
@@ -24,9 +24,6 @@ int main(void) | |||
24 | 24 | ||
25 | DEFINE(THREAD_KSP, offsetof(struct thread_struct, ksp)); | 25 | DEFINE(THREAD_KSP, offsetof(struct thread_struct, ksp)); |
26 | DEFINE(THREAD_CALLEE_REG, offsetof(struct thread_struct, callee_reg)); | 26 | DEFINE(THREAD_CALLEE_REG, offsetof(struct thread_struct, callee_reg)); |
27 | #ifdef CONFIG_ARC_CURR_IN_REG | ||
28 | DEFINE(THREAD_USER_R25, offsetof(struct thread_struct, user_r25)); | ||
29 | #endif | ||
30 | DEFINE(THREAD_FAULT_ADDR, | 27 | DEFINE(THREAD_FAULT_ADDR, |
31 | offsetof(struct thread_struct, fault_address)); | 28 | offsetof(struct thread_struct, fault_address)); |
32 | 29 | ||
@@ -49,7 +46,7 @@ int main(void) | |||
49 | BLANK(); | 46 | BLANK(); |
50 | 47 | ||
51 | DEFINE(PT_status32, offsetof(struct pt_regs, status32)); | 48 | DEFINE(PT_status32, offsetof(struct pt_regs, status32)); |
52 | DEFINE(PT_orig_r8, offsetof(struct pt_regs, orig_r8_word)); | 49 | DEFINE(PT_event, offsetof(struct pt_regs, event)); |
53 | DEFINE(PT_sp, offsetof(struct pt_regs, sp)); | 50 | DEFINE(PT_sp, offsetof(struct pt_regs, sp)); |
54 | DEFINE(PT_r0, offsetof(struct pt_regs, r0)); | 51 | DEFINE(PT_r0, offsetof(struct pt_regs, r0)); |
55 | DEFINE(PT_r1, offsetof(struct pt_regs, r1)); | 52 | DEFINE(PT_r1, offsetof(struct pt_regs, r1)); |
@@ -60,5 +57,7 @@ int main(void) | |||
60 | DEFINE(PT_r6, offsetof(struct pt_regs, r6)); | 57 | DEFINE(PT_r6, offsetof(struct pt_regs, r6)); |
61 | DEFINE(PT_r7, offsetof(struct pt_regs, r7)); | 58 | DEFINE(PT_r7, offsetof(struct pt_regs, r7)); |
62 | 59 | ||
60 | DEFINE(SZ_CALLEE_REGS, sizeof(struct callee_regs)); | ||
61 | DEFINE(SZ_PT_REGS, sizeof(struct pt_regs)); | ||
63 | return 0; | 62 | return 0; |
64 | } | 63 | } |