ACPI: power: Use dev_dbg() to print some messages

The messages printed by acpi_resume_power_resources() and
acpi_turn_off_unused_power_resources() are not important enough to be
printed with pr_info(), so use dev_dbg() instead of it to get rid of
some noise in the kernel log.

Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Acked-by: Borislav Petkov <bp@suse.de>
This commit is contained in:
Rafael J. Wysocki 2021-06-11 18:58:48 +02:00
parent aa3a522c4f
commit db9b6d87a8
1 changed files with 2 additions and 2 deletions

View File

@ -1004,7 +1004,7 @@ void acpi_resume_power_resources(void)
if (state == ACPI_POWER_RESOURCE_STATE_OFF
&& resource->ref_count) {
dev_info(&resource->device.dev, "Turning ON\n");
dev_dbg(&resource->device.dev, "Turning ON\n");
__acpi_power_on(resource);
}
@ -1034,7 +1034,7 @@ void acpi_turn_off_unused_power_resources(void)
*/
if (!resource->ref_count &&
resource->state != ACPI_POWER_RESOURCE_STATE_OFF) {
dev_info(&resource->device.dev, "Turning OFF\n");
dev_dbg(&resource->device.dev, "Turning OFF\n");
__acpi_power_off(resource);
}