Skip to content

Commit e23ad54

Browse files
raornrafaeljw
authored andcommitted
ACPI: resource: Do IRQ override on Lunnen Ground laptops
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 <raorn@raorn.name> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent 0793e51 commit e23ad54

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

drivers/acpi/resource.c

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -602,6 +602,20 @@ static const struct dmi_system_id irq1_edge_low_force_override[] = {
602602
DMI_MATCH(DMI_BOARD_NAME, "GM5RGEE0016COM"),
603603
},
604604
},
605+
{
606+
/* Lunnen Ground 15 / AMD Ryzen 5 5500U */
607+
.matches = {
608+
DMI_MATCH(DMI_SYS_VENDOR, "Lunnen"),
609+
DMI_MATCH(DMI_BOARD_NAME, "LLL5DAW"),
610+
},
611+
},
612+
{
613+
/* Lunnen Ground 16 / AMD Ryzen 7 5800U */
614+
.matches = {
615+
DMI_MATCH(DMI_SYS_VENDOR, "Lunnen"),
616+
DMI_MATCH(DMI_BOARD_NAME, "LL6FA"),
617+
},
618+
},
605619
{ }
606620
};
607621

0 commit comments

Comments
 (0)