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:
parent
aa3a522c4f
commit
db9b6d87a8
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue