Skip to content

Commit e13757f

Browse files
jwrdegoededtor
authored andcommitted
Input: soc_button_array - add Acer Switch V 10 to dmi_use_low_level_irq[]
Like on the Acer Switch 10 SW5-012, the Acer Switch V 10 SW5-017's _LID method messes with home- and power-button GPIO IRQ settings, causing an IRQ storm. Add a quirk entry for the Acer Switch V 10 to the dmi_use_low_level_irq[] DMI quirk list, to use low-level IRQs on this model, fixing the IRQ storm. Signed-off-by: Hans de Goede <hdegoede@redhat.com> Link: https://lore.kernel.org/r/20221106215320.67109-2-hdegoede@redhat.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
1 parent 8e9ada1 commit e13757f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

drivers/input/misc/soc_button_array.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,13 @@ static const struct dmi_system_id dmi_use_low_level_irq[] = {
7777
DMI_MATCH(DMI_PRODUCT_NAME, "Aspire SW5-012"),
7878
},
7979
},
80+
{
81+
/* Acer Switch V 10 SW5-017, same issue as Acer Switch 10 SW5-012. */
82+
.matches = {
83+
DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
84+
DMI_MATCH(DMI_PRODUCT_NAME, "SW5-017"),
85+
},
86+
},
8087
{
8188
/*
8289
* Acer One S1003. _LID method messes with power-button GPIO

0 commit comments

Comments
 (0)