mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
ACPI: reboot: Unify the message printing
The meesage printing in this file is mixed with pr_*() and printk() but with no prefix and no pr_fmt() defined. Intoduce pr_fmt() and use pr_*() macros to replace printk(), to generate a unified format string for prefix. Signed-off-by: Hanjun Guo <guohanjun@huawei.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
4140054af0
commit
6ecfe60a13
@ -1,5 +1,7 @@
|
||||
// SPDX-License-Identifier: GPL-2.0
|
||||
|
||||
#define pr_fmt(fmt) "ACPI: " fmt
|
||||
|
||||
#include <linux/pci.h>
|
||||
#include <linux/acpi.h>
|
||||
#include <acpi/reboot.h>
|
||||
@ -63,7 +65,7 @@ void acpi_reboot(void)
|
||||
|
||||
case ACPI_ADR_SPACE_SYSTEM_MEMORY:
|
||||
case ACPI_ADR_SPACE_SYSTEM_IO:
|
||||
printk(KERN_DEBUG "ACPI MEMORY or I/O RESET_REG.\n");
|
||||
pr_debug("ACPI MEMORY or I/O RESET_REG.\n");
|
||||
acpi_reset();
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user