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

Pull ACPI fix from Rafael Wysocki:
"Fix yet another piece of ACPI CPPC changes fallout on AMD platforms
(Mario Limonciello)"

* tag 'acpi-5.19-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
ACPI: CPPC: Don't require flexible address space if X86_FEATURE_CPPC is supported

+4 -2
+4 -2
drivers/acpi/cppc_acpi.c
··· 782 782 783 783 if (!osc_cpc_flexible_adr_space_confirmed) { 784 784 pr_debug("Flexible address space capability not supported\n"); 785 - goto out_free; 785 + if (!cpc_supported_by_cpu()) 786 + goto out_free; 786 787 } 787 788 788 789 addr = ioremap(gas_t->address, gas_t->bit_width/8); ··· 810 809 } 811 810 if (!osc_cpc_flexible_adr_space_confirmed) { 812 811 pr_debug("Flexible address space capability not supported\n"); 813 - goto out_free; 812 + if (!cpc_supported_by_cpu()) 813 + goto out_free; 814 814 } 815 815 } else { 816 816 if (gas_t->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE || !cpc_ffh_supported()) {