From: Alexey I. Froloff Date: Fri, 16 Feb 2024 12:30:09 +0000 (+0000) Subject: ACPI: resource: Do IRQ override on Lunnen Ground laptops X-Git-Tag: v5.15.153~199 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cc06efd8a6be79e9cf3d5a58a8d301c1176c33ec;p=thirdparty%2Fkernel%2Fstable.git ACPI: resource: Do IRQ override on Lunnen Ground laptops [ Upstream commit e23ad54fef186aa66007895be1382c88f1ee2bf7 ] The Lunnen Ground 15 and 16 needs IRQ overriding for the keyboard to work. Adding an entries for these laptops to the override_table makes the internal keyboard functional. Signed-off-by: Alexey I. Froloff Signed-off-by: Rafael J. Wysocki Stable-dep-of: 021a67d09615 ("ACPI: resource: Add MAIBENBEN X577 to irq1_edge_low_force_override") Signed-off-by: Sasha Levin --- diff --git a/drivers/acpi/resource.c b/drivers/acpi/resource.c index 16a18654f6879..a46e0bf0e1dc4 100644 --- a/drivers/acpi/resource.c +++ b/drivers/acpi/resource.c @@ -558,6 +558,20 @@ static const struct dmi_system_id lg_laptop[] = { DMI_MATCH(DMI_BOARD_NAME, "GM5RGEE0016COM"), }, }, + { + /* Lunnen Ground 15 / AMD Ryzen 5 5500U */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Lunnen"), + DMI_MATCH(DMI_BOARD_NAME, "LLL5DAW"), + }, + }, + { + /* Lunnen Ground 16 / AMD Ryzen 7 5800U */ + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Lunnen"), + DMI_MATCH(DMI_BOARD_NAME, "LL6FA"), + }, + }, { } };