]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
platform/x86: intel-vbtn: Support for tablet mode on HP Pavilion 13 x360 PC
authorMax Verevkin <me@maxverevkin.tk>
Tue, 24 Nov 2020 13:16:52 +0000 (15:16 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 1 Mar 2024 12:16:47 +0000 (13:16 +0100)
[ Upstream commit 07b211992d6c0d80b321403244d43bbd2d6cf48c ]

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>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/platform/x86/intel-vbtn.c

index a90c32d072da31120149fb8cbd77d40ccd1b3036..9c8a6722f115eac4e667d2f3bbeaf22372493ed9 100644 (file)
@@ -230,6 +230,12 @@ static const struct dmi_system_id dmi_switches_allow_list[] = {
                        DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 7352"),
                },
        },
+       {
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
+                       DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion 13 x360 PC"),
+               },
+       },
        {} /* Array terminator */
 };