Skip to content

Commit

Permalink
platform/x86: acer-wmi: refactor function has_cap
Browse files Browse the repository at this point in the history
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: Gustavo A. R. Silva <gustavo@embeddedor.com>
Reviewed-by: "Lee, Chun-Yi" <jlee@suse.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
  • Loading branch information
Gustavo A. R. Silva authored and Andy Shevchenko committed Aug 15, 2018
1 parent d22296d commit aa7d16b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions drivers/platform/x86/acer-wmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -672,10 +672,7 @@ static void __init find_quirks(void)

static bool has_cap(u32 cap)
{
if ((interface->capability & cap) != 0)
return 1;

return 0;
return interface->capability & cap;
}

/*
Expand Down

0 comments on commit aa7d16b

Please sign in to comment.