[PATCH] platform/x86: acer-wmi: use true and false for boolean values
From: Gustavo A. R. Silva
Date: Sat Aug 04 2018 - 20:18:43 EST
Return statements in functions returning bool should use true or false
instead of an integer value.
This code was detected with the help of Coccinelle.
Signed-off-by: Gustavo A. R. Silva <gustavo@xxxxxxxxxxxxxx>
---
drivers/platform/x86/acer-wmi.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
index 8952173..ede92be 100644
--- a/drivers/platform/x86/acer-wmi.c
+++ b/drivers/platform/x86/acer-wmi.c
@@ -673,9 +673,9 @@ static void __init find_quirks(void)
static bool has_cap(u32 cap)
{
if ((interface->capability & cap) != 0)
- return 1;
+ return true;
- return 0;
+ return false;
}
/*
--
2.7.4