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

Pull ACPI fixes from Rafael Wysocki:
"Add an ACPI EC GPE detection quirk for HP Pavilion Gaming 15-dk1xxx
and ACPI IRQ override quirks for TongFang GM6BGEQ, GM6BG5Q and
GM6BG0Q, and for ASUS ExpertBook B1402CBA (Hans de Goede).

* tag 'acpi-6.6-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
ACPI: resource: Add TongFang GM6BGEQ, GM6BG5Q and GM6BG0Q to irq1_edge_low_force_override[]
ACPI: EC: Add quirk for the HP Pavilion Gaming 15-dk1xxx
ACPI: resource: Skip IRQ override on ASUS ExpertBook B1402CBA

+31 -6
+11
drivers/acpi/ec.c
··· 1915 1915 }, 1916 1916 { 1917 1917 /* 1918 + * HP Pavilion Gaming Laptop 15-dk1xxx 1919 + * https://github.com/systemd/systemd/issues/28942 1920 + */ 1921 + .callback = ec_honor_dsdt_gpe, 1922 + .matches = { 1923 + DMI_MATCH(DMI_SYS_VENDOR, "HP"), 1924 + DMI_MATCH(DMI_PRODUCT_NAME, "HP Pavilion Gaming Laptop 15-dk1xxx"), 1925 + }, 1926 + }, 1927 + { 1928 + /* 1918 1929 * Samsung hardware 1919 1930 * https://bugzilla.kernel.org/show_bug.cgi?id=44161 1920 1931 */
+20 -6
drivers/acpi/resource.c
··· 440 440 }, 441 441 }, 442 442 { 443 + .ident = "Asus ExpertBook B1402CBA", 444 + .matches = { 445 + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), 446 + DMI_MATCH(DMI_BOARD_NAME, "B1402CBA"), 447 + }, 448 + }, 449 + { 443 450 .ident = "Asus ExpertBook B1502CBA", 444 451 .matches = { 445 452 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), ··· 507 500 508 501 static const struct dmi_system_id pcspecialist_laptop[] = { 509 502 { 510 - .ident = "PCSpecialist Elimina Pro 16 M", 511 - /* 512 - * Some models have product-name "Elimina Pro 16 M", 513 - * others "GM6BGEQ". Match on board-name to match both. 514 - */ 503 + /* TongFang GM6BGEQ / PCSpecialist Elimina Pro 16 M, RTX 3050 */ 515 504 .matches = { 516 - DMI_MATCH(DMI_SYS_VENDOR, "PCSpecialist"), 517 505 DMI_MATCH(DMI_BOARD_NAME, "GM6BGEQ"), 506 + }, 507 + }, 508 + { 509 + /* TongFang GM6BG5Q, RTX 4050 */ 510 + .matches = { 511 + DMI_MATCH(DMI_BOARD_NAME, "GM6BG5Q"), 512 + }, 513 + }, 514 + { 515 + /* TongFang GM6BG0Q / PCSpecialist Elimina Pro 16 M, RTX 4060 */ 516 + .matches = { 517 + DMI_MATCH(DMI_BOARD_NAME, "GM6BG0Q"), 518 518 }, 519 519 }, 520 520 { }