aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/resource.c
diff options
context:
space:
mode:
authorHui Wang <hui.wang@canonical.com>2021-10-25 14:16:01 +0800
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2021-10-26 15:37:32 +0200
commit1b26ae40092b43bb6e9c5df376227382b390b953 (patch)
treeec6bc2f198926927f4d26ea88ac392417884e013 /drivers/acpi/resource.c
parentACPI: resources: Add DMI-based legacy IRQ override quirk (diff)
downloadlinux-dev-1b26ae40092b43bb6e9c5df376227382b390b953.tar.xz
linux-dev-1b26ae40092b43bb6e9c5df376227382b390b953.zip
ACPI: resources: Add one more Medion model in IRQ override quirk
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>
Diffstat (limited to 'drivers/acpi/resource.c')
-rw-r--r--drivers/acpi/resource.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c
index 7bf38652e6ac..3c25ce8c95ba 100644
--- a/drivers/acpi/resource.c
+++ b/drivers/acpi/resource.c
@@ -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"),
+ },
+ },
{ }
};