Skip to content

Commit 93f5de5

Browse files
committed
Merge tag 'acpi-6.5-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Pull ACPI fix from Rafael Wysocki: "Make an existing ACPI IRQ override quirk for PCSpecialist Elimina Pro 16 M work as intended (Hans de Goede)" * tag 'acpi-6.5-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: ACPI: resource: Fix IRQ override quirk for PCSpecialist Elimina Pro 16 M
2 parents a5e505a + 453b014 commit 93f5de5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

drivers/acpi/resource.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,9 +501,13 @@ static const struct dmi_system_id maingear_laptop[] = {
501501
static const struct dmi_system_id pcspecialist_laptop[] = {
502502
{
503503
.ident = "PCSpecialist Elimina Pro 16 M",
504+
/*
505+
* Some models have product-name "Elimina Pro 16 M",
506+
* others "GM6BGEQ". Match on board-name to match both.
507+
*/
504508
.matches = {
505509
DMI_MATCH(DMI_SYS_VENDOR, "PCSpecialist"),
506-
DMI_MATCH(DMI_PRODUCT_NAME, "Elimina Pro 16 M"),
510+
DMI_MATCH(DMI_BOARD_NAME, "GM6BGEQ"),
507511
},
508512
},
509513
{ }

0 commit comments

Comments
 (0)