From: Hui Wang Date: Mon, 25 Oct 2021 06:16:01 +0000 (+0800) Subject: ACPI: resources: Add one more Medion model in IRQ override quirk X-Git-Tag: accepted/tizen/unified/20230118.172025~5763 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=91f8e91d93cee34b93beca6ed396c5745f384310;p=platform%2Fkernel%2Flinux-rpi.git ACPI: resources: Add one more Medion model in IRQ override quirk [ Upstream commit 1b26ae40092b43bb6e9c5df376227382b390b953 ] 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 Signed-off-by: Hui Wang Signed-off-by: Rafael J. Wysocki Signed-off-by: Sasha Levin --- diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c index 7bf3865..3c25ce8 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"), + }, + }, { } };