diff options
author | Aymeric Wibo <[email protected]> | 2023-03-19 03:12:05 +0100 |
---|---|---|
committer | Rafael J. Wysocki <[email protected]> | 2023-03-24 17:07:56 +0100 |
commit | 2d0ab14634a26e54f8d6d231b47b7ef233e84599 (patch) | |
tree | edcd1a931753c25bda706971b04fd049116ddda4 | |
parent | e8d018dd0257f744ca50a729e3d042cf2ec9da65 (diff) |
ACPI: resource: Add Medion S17413 to IRQ override quirk
Add DMI info of the Medion S17413 (board M1xA) to the IRQ override
quirk table. This fixes the keyboard not working on these laptops.
Link: https://bugzilla.kernel.org/show_bug.cgi?id=213031
Signed-off-by: Aymeric Wibo <[email protected]>
[ rjw: Fixed up white space ]
Signed-off-by: Rafael J. Wysocki <[email protected]>
-rw-r--r-- | drivers/acpi/resource.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c index 7c9125df5a65..7b4801ce62d6 100644 --- a/drivers/acpi/resource.c +++ b/drivers/acpi/resource.c @@ -400,6 +400,13 @@ static const struct dmi_system_id medion_laptop[] = { DMI_MATCH(DMI_BOARD_NAME, "M17T"), }, }, + { + .ident = "MEDION S17413", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "MEDION"), + DMI_MATCH(DMI_BOARD_NAME, "M1xA"), + }, + }, { } }; |