Commit 9968e12a authored by Stefan Brüns's avatar Stefan Brüns Committed by Andy Shevchenko

platform/x86: hp-wmi: Fix tablet mode detection for convertibles

Commit f9cf3b28 ("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: f9cf3b28 ("platform/x86: hp-wmi: Refactor dock and tablet state fetchers")
Signed-off-by: default avatarStefan Brüns <stefan.bruens@rwth-aachen.de>
Signed-off-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
parent fbc15e30
......@@ -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)
......
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