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.4-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm

Pull ACPI fix from Rafael Wysocki:
"Add an ACPI IRQ override quirk for LG UltraPC 17U70P so as to make the
internal keyboard work on that machine (Rubén Gómez)"

* tag 'acpi-6.4-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
ACPI: resource: Add IRQ override quirk for LG UltraPC 17U70P

+12
+12
drivers/acpi/resource.c
··· 516 516 { } 517 517 }; 518 518 519 + static const struct dmi_system_id lg_laptop[] = { 520 + { 521 + .ident = "LG Electronics 17U70P", 522 + .matches = { 523 + DMI_MATCH(DMI_SYS_VENDOR, "LG Electronics"), 524 + DMI_MATCH(DMI_BOARD_NAME, "17U70P"), 525 + }, 526 + }, 527 + { } 528 + }; 529 + 519 530 struct irq_override_cmp { 520 531 const struct dmi_system_id *system; 521 532 unsigned char irq; ··· 543 532 { lenovo_laptop, 10, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_LOW, 0, true }, 544 533 { tongfang_gm_rg, 1, ACPI_EDGE_SENSITIVE, ACPI_ACTIVE_LOW, 1, true }, 545 534 { maingear_laptop, 1, ACPI_EDGE_SENSITIVE, ACPI_ACTIVE_LOW, 1, true }, 535 + { lg_laptop, 1, ACPI_LEVEL_SENSITIVE, ACPI_ACTIVE_LOW, 0, false }, 546 536 }; 547 537 548 538 static bool acpi_dev_irq_override(u32 gsi, u8 triggering, u8 polarity,