Skip to content

Commit 453b014

Browse files
jwrdegoederafaeljw
authored andcommitted
ACPI: resource: Fix IRQ override quirk for PCSpecialist Elimina Pro 16 M
It turns out that some PCSpecialist Elimina Pro 16 M models have "GM6BGEQ" as DMI product-name instead of "Elimina Pro 16 M", causing the existing DMI quirk to not work on these models. The DMI board-name is always "GM6BGEQ", so match on that instead. Fixes: 56fec00 ("ACPI: resource: Add IRQ override quirk for PCSpecialist Elimina Pro 16 M") Link: https://bugzilla.kernel.org/show_bug.cgi?id=217394#c36 Cc: All applicable <stable@vger.kernel.org> Signed-off-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent 706a741 commit 453b014

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)