2021-10-18 03:42:47

by Huilong Deng

[permalink] [raw]
Subject: [PATCH] s390/bitops: Return true/false (not 1/0) from bool functions

Signed-off-by: Huilong Deng <[email protected]>
---
arch/s390/include/asm/bitops.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/s390/include/asm/bitops.h b/arch/s390/include/asm/bitops.h
index f7cefdde7c24..1d40630128a5 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);
}

--
2.32.0


2021-10-18 10:47:00

by Heiko Carstens

[permalink] [raw]
Subject: Re: [PATCH] s390/bitops: Return true/false (not 1/0) from bool functions

On Sun, Oct 17, 2021 at 05:20:57PM +0800, Huilong Deng wrote:
> Signed-off-by: Huilong Deng <[email protected]>
> ---
> arch/s390/include/asm/bitops.h | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)

Applied, thanks.