Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit c7cfe9b

Browse files
superm1rafaeljw
authored andcommitted
ACPI: processor: Downgrade Intel _OSC and _PDC messages to debug
Commit 9527264 ("ACPI: processor: Use _OSC to convey OSPM processor support information") introduced messages related to determining processor support from the firmware. The UUID 4077A616-290C-47BE-9EBD-D87058713953 and _PDC methods are only used on Intel platforms, but all X86 platforms emit the messages. Attempting to evaluate them and showing messages on which are used is unnecessary for most users. Downgrade the messages to debug instead. Signed-off-by: Mario Limonciello <mario.limonciello@amd.com> Link: https://patch.msgid.link/20240618214225.50953-1-mario.limonciello@amd.com Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
1 parent 6ba59ff commit c7cfe9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/acpi/acpi_processor.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -598,9 +598,9 @@ static bool __init acpi_early_processor_osc(void)
598598
void __init acpi_early_processor_control_setup(void)
599599
{
600600
if (acpi_early_processor_osc()) {
601-
pr_info("_OSC evaluated successfully for all CPUs\n");
601+
pr_debug("_OSC evaluated successfully for all CPUs\n");
602602
} else {
603-
pr_info("_OSC evaluation for CPUs failed, trying _PDC\n");
603+
pr_debug("_OSC evaluation for CPUs failed, trying _PDC\n");
604604
acpi_early_processor_set_pdc();
605605
}
606606
}

0 commit comments

Comments
 (0)