Skip to content

Commit

Permalink
platform/x86: hp-wmi: Fix tablet mode detection for convertibles
Browse files Browse the repository at this point in the history
Commit f9cf3b2 ("platform/x86: hp-wmi: Refactor dock and tablet
state fetchers") consolidated the methods for docking and laptop mode
detection, but omitted to apply the correct mask for the laptop mode
(it always uses the constant for docking).

Fixes: f9cf3b2 ("platform/x86: hp-wmi: Refactor dock and tablet state fetchers")
Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
  • Loading branch information
Stefan Brüns authored and Andy Shevchenko committed Nov 5, 2017
1 parent fbc15e3 commit 9968e12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/platform/x86/hp-wmi.c
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ static int hp_wmi_hw_state(int mask)
if (state < 0)
return state;

return state & 0x1;
return !!(state & mask);
}

static int __init hp_wmi_bios_2008_later(void)
Expand Down

0 comments on commit 9968e12

Please sign in to comment.