From: Huilong Deng Date: Sun, 17 Oct 2021 09:20:57 +0000 (+0800) Subject: s390/bitops: return true/false (not 1/0) from bool functions X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ff7a1eefdff5867db4a4f678deed0d04f32cad15;p=linux.git s390/bitops: return true/false (not 1/0) from bool functions Signed-off-by: Huilong Deng Link: https://lore.kernel.org/r/20211017092057.24179-1-denghuilong@cdjrlc.com Signed-off-by: Heiko Carstens Signed-off-by: Vasily Gorbik --- diff --git a/arch/s390/include/asm/bitops.h b/arch/s390/include/asm/bitops.h index fd149480b6e2b..5a530c552c238 100644 --- a/arch/s390/include/asm/bitops.h +++ b/arch/s390/include/asm/bitops.h @@ -188,7 +188,7 @@ static inline bool arch_test_and_set_bit_lock(unsigned long nr, volatile unsigned long *ptr) { if (arch_test_bit(nr, ptr)) - return 1; + return true; return arch_test_and_set_bit(nr, ptr); }