diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2015-11-26 09:25:35 +0100 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2015-11-27 09:24:17 +0100 |
commit | 9eb31be33cf84266abd61de0f6d3d1fe609587cf (patch) | |
tree | 5a1496ed7bb9e0b9cf9222a8a7b5d023e7460cd5 /arch/s390/include/asm/compat.h | |
parent | s390: add 'install' target to 'make help' (diff) | |
download | linux-9eb31be33cf84266abd61de0f6d3d1fe609587cf.tar.xz linux-9eb31be33cf84266abd61de0f6d3d1fe609587cf.zip |
s390: remove is_32bit_task() helper
is_32bit_task() used to be helpful when we still had CONFIG_32BIT.
Since that is gone, it is nowadays identical to is_compat_task().
So remove it.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/include/asm/compat.h')
-rw-r--r-- | arch/s390/include/asm/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/include/asm/compat.h b/arch/s390/include/asm/compat.h index d350ed9d0fbb..352f7bdaf11f 100644 --- a/arch/s390/include/asm/compat.h +++ b/arch/s390/include/asm/compat.h @@ -284,7 +284,7 @@ static inline compat_uptr_t ptr_to_compat(void __user *uptr) static inline int is_compat_task(void) { - return is_32bit_task(); + return test_thread_flag(TIF_31BIT); } static inline void __user *arch_compat_alloc_user_space(long len) |