Commit aa7d16bf authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by Andy Shevchenko

platform/x86: acer-wmi: refactor function has_cap

Refactor function has_cap in order to avoid returning integer
values, when instead it should return booleans.

This code was detected with the help of Coccinelle.
Signed-off-by: default avatarGustavo A. R. Silva <gustavo@embeddedor.com>
Reviewed-by: default avatar"Lee, Chun-Yi" <jlee@suse.com>
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
parent d22296d9
...@@ -672,10 +672,7 @@ static void __init find_quirks(void) ...@@ -672,10 +672,7 @@ static void __init find_quirks(void)
static bool has_cap(u32 cap) static bool has_cap(u32 cap)
{ {
if ((interface->capability & cap) != 0) return interface->capability & cap;
return 1;
return 0;
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment