Skip to content

Commit 223f61b

Browse files
jwrdegoededtor
authored andcommitted
Input: soc_button_array - add Lenovo Yoga Tablet2 1051L to the dmi_use_low_level_irq list
Add the Lenovo Yoga Tablet2 1051L to the list of devices where the ACPI AML code is poking the GPIO config register directly changing the IRQ type to a low_level_irq, which we need to work around. This fixes the home button on the Lenovo Yoga Tablet2 1051L not working. Signed-off-by: Hans de Goede <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Dmitry Torokhov <[email protected]>
1 parent 3b384bd commit 223f61b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

drivers/input/misc/soc_button_array.c

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,17 @@ static const struct dmi_system_id dmi_use_low_level_irq[] = {
8383
DMI_MATCH(DMI_PRODUCT_NAME, "One S1003"),
8484
},
8585
},
86+
{
87+
/*
88+
* Lenovo Yoga Tab2 1051L, something messes with the home-button
89+
* IRQ settings, leading to a non working home-button.
90+
*/
91+
.matches = {
92+
DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"),
93+
DMI_MATCH(DMI_PRODUCT_NAME, "60073"),
94+
DMI_MATCH(DMI_PRODUCT_VERSION, "1051L"),
95+
},
96+
},
8697
{} /* Terminating entry */
8798
};
8899

0 commit comments

Comments
 (0)