aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHeiko Carstens <heiko.carstens@de.ibm.com>2015-03-30 11:11:49 +0200
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2015-03-30 13:26:07 +0200
commit1a327ffd3d6a79ed85d53b683c185196060ac3b3 (patch)
treee84daeecf3395b80dbedbe760d731c42412f3ebc
parents390/irq: enforce correct irqclass_sub_desc array size (diff)
downloadlinux-dev-1a327ffd3d6a79ed85d53b683c185196060ac3b3.tar.xz
linux-dev-1a327ffd3d6a79ed85d53b683c185196060ac3b3.zip
s390/syscalls: simplify syscall_get_arch()
Given that sizeof(long) is now always 8, we can simplify syscall_get_arch() a bit. Just another piece I didn't find when removing 31 bit support. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
-rw-r--r--arch/s390/include/asm/syscall.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/include/asm/syscall.h b/arch/s390/include/asm/syscall.h
index 5bc12598ae9e..6ba0bf928909 100644
--- a/arch/s390/include/asm/syscall.h
+++ b/arch/s390/include/asm/syscall.h
@@ -95,6 +95,6 @@ static inline int syscall_get_arch(void)
if (test_tsk_thread_flag(current, TIF_31BIT))
return AUDIT_ARCH_S390;
#endif
- return sizeof(long) == 8 ? AUDIT_ARCH_S390X : AUDIT_ARCH_S390;
+ return AUDIT_ARCH_S390X;
}
#endif /* _ASM_SYSCALL_H */