Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

platform/x86: intel-vbtn: Support for tablet mode on HP Pavilion 13 x360 PC

The Pavilion 13 x360 PC has a chassis-type which does not indicate it is
a convertible, while it is actually a convertible. Add it to the
dmi_switches_allow_list.

Signed-off-by: Max Verevkin <me@maxverevkin.tk>
Link: https://lore.kernel.org/r/20201124131652.11165-1-me@maxverevkin.tk
Signed-off-by: Hans de Goede <hdegoede@redhat.com>

authored by

Max Verevkin and committed by
Hans de Goede
07b21199 96adb419

+6
+6
drivers/platform/x86/intel-vbtn.c
··· 206 206 DMI_MATCH(DMI_PRODUCT_NAME, "HP Stream x360 Convertible PC 11"), 207 207 }, 208 208 }, 209 + { 210 + .matches = { 211 + DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), 212 + DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion 13 x360 PC"), 213 + }, 214 + }, 209 215 {} /* Array terminator */ 210 216 }; 211 217