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

Pull ACPI fixes from Rafael Wysocki:
"These add two ACPI-related quirks:

- Add a quirk to force StorageD3Enable on AMD Picasso systems (Mario
Limonciello)

- Add an ACPI IRQ override quirk for ASUS ExpertBook B1502CBA (Paul
Menzel)"

* tag 'acpi-6.3-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
ACPI: resource: Skip IRQ override on ASUS ExpertBook B1502CBA
ACPI: x86: utils: Add Picasso to the list for forcing StorageD3Enable

+8
+7
drivers/acpi/resource.c
··· 440 440 }, 441 441 }, 442 442 { 443 + .ident = "Asus ExpertBook B1502CBA", 444 + .matches = { 445 + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."), 446 + DMI_MATCH(DMI_BOARD_NAME, "B1502CBA"), 447 + }, 448 + }, 449 + { 443 450 .ident = "Asus ExpertBook B2402CBA", 444 451 .matches = { 445 452 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+1
drivers/acpi/x86/utils.c
··· 213 213 disk in the system. 214 214 */ 215 215 static const struct x86_cpu_id storage_d3_cpu_ids[] = { 216 + X86_MATCH_VENDOR_FAM_MODEL(AMD, 23, 24, NULL), /* Picasso */ 216 217 X86_MATCH_VENDOR_FAM_MODEL(AMD, 23, 96, NULL), /* Renoir */ 217 218 X86_MATCH_VENDOR_FAM_MODEL(AMD, 23, 104, NULL), /* Lucienne */ 218 219 X86_MATCH_VENDOR_FAM_MODEL(AMD, 25, 80, NULL), /* Cezanne */