Skip to content

Commit 81aec88

Browse files
superm1gregkh
authored andcommitted
Revert "ACPI: CPPC: Adjust debug messages in amd_set_max_freq_ratio() to warn"
commit db5dadb upstream. Some older systems don't support CPPC in the firmware and this just makes noise for them when booting. Drop back to debug. This reverts commit 21fb59a. Fixes: 21fb59a ("ACPI: CPPC: Adjust debug messages in amd_set_max_freq_ratio() to warn") Suggested-by: Kim Phillips <kim.phillips@amd.com> Signed-off-by: Mario Limonciello <mario.limonciello@amd.com> Tested-by: Kim Phillips <kim.phillips@amd.com> Cc: All applicable <stable@vger.kernel.org> Link: https://patch.msgid.link/20260504230141.484743-2-mario.limonciello@amd.com Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 0a065c5 commit 81aec88

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

arch/x86/kernel/acpi/cppc.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,19 +86,19 @@ static void amd_set_max_freq_ratio(void)
8686

8787
rc = cppc_get_perf_caps(0, &perf_caps);
8888
if (rc) {
89-
pr_warn("Could not retrieve perf counters (%d)\n", rc);
89+
pr_debug("Could not retrieve perf counters (%d)\n", rc);
9090
return;
9191
}
9292

9393
rc = amd_get_boost_ratio_numerator(0, &numerator);
9494
if (rc) {
95-
pr_warn("Could not retrieve highest performance (%d)\n", rc);
95+
pr_debug("Could not retrieve highest performance (%d)\n", rc);
9696
return;
9797
}
9898
nominal_perf = perf_caps.nominal_perf;
9999

100100
if (!nominal_perf) {
101-
pr_warn("Could not retrieve nominal performance\n");
101+
pr_debug("Could not retrieve nominal performance\n");
102102
return;
103103
}
104104

0 commit comments

Comments
 (0)