Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+5 -1
+5 -1
drivers/acpi/resource.c
··· 501 501 static const struct dmi_system_id pcspecialist_laptop[] = { 502 502 { 503 503 .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 + */ 504 508 .matches = { 505 509 DMI_MATCH(DMI_SYS_VENDOR, "PCSpecialist"), 506 - DMI_MATCH(DMI_PRODUCT_NAME, "Elimina Pro 16 M"), 510 + DMI_MATCH(DMI_BOARD_NAME, "GM6BGEQ"), 507 511 }, 508 512 }, 509 513 { }