]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ACPI: resources: Add one more Medion model in IRQ override quirk
authorHui Wang <hui.wang@canonical.com>
Mon, 25 Oct 2021 06:16:01 +0000 (14:16 +0800)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 26 Oct 2021 13:37:32 +0000 (15:37 +0200)
The Medion s17 series laptops have the same issue on the keyboard
as the s15 series, if skipping to call acpi_get_override_irq(), the
keyboard could work well. So put the DMI info of s17 series in the
IRQ override quirk table as well.

BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=213031
Tested-by: dirksche <dirksche@posteo.de>
Signed-off-by: Hui Wang <hui.wang@canonical.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/resource.c

index 7bf38652e6aca052ff1fffe56cbe18465258e5ea..3c25ce8c95ba1b19a256166109a9f34c724c5d72 100644 (file)
@@ -389,6 +389,13 @@ static const struct dmi_system_id medion_laptop[] = {
                        DMI_MATCH(DMI_BOARD_NAME, "M15T"),
                },
        },
+       {
+               .ident = "MEDION S17405",
+               .matches = {
+                       DMI_MATCH(DMI_SYS_VENDOR, "MEDION"),
+                       DMI_MATCH(DMI_BOARD_NAME, "M17T"),
+               },
+       },
        { }
 };