diff options
Diffstat (limited to 'include/asm-arm26/system.h')
-rw-r--r-- | include/asm-arm26/system.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-arm26/system.h b/include/asm-arm26/system.h index 1bce6b3590f..ca4ccfc4b57 100644 --- a/include/asm-arm26/system.h +++ b/include/asm-arm26/system.h @@ -111,7 +111,7 @@ extern struct task_struct *__switch_to(struct task_struct *, struct thread_info #define switch_to(prev,next,last) \ do { \ - last = __switch_to(prev,prev->thread_info,next->thread_info); \ + last = __switch_to(prev,task_thread_info(prev),task_thread_info(next)); \ } while (0) /* |