diff options
author | Frank Seidel <frank@f-seidel.de> | 2009-02-04 17:03:07 +0100 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-02-07 00:29:32 -0500 |
commit | 4d9391557b68475b118ec7626607c37b14ae8c16 (patch) | |
tree | 92176ea365b9c3027c0779f741da6d83154cd9c9 /drivers/acpi/sleep.c | |
parent | ae1a25da8448271a99745da03100d5299575a269 (diff) | |
download | kernel-crypto-4d9391557b68475b118ec7626607c37b14ae8c16.tar.gz kernel-crypto-4d9391557b68475b118ec7626607c37b14ae8c16.tar.xz kernel-crypto-4d9391557b68475b118ec7626607c37b14ae8c16.zip |
ACPI: add missing KERN_* constants to printks
According to kerneljanitors todo list all printk calls (beginning
a new line) should have an according KERN_* constant.
Those are the missing peaces here for the acpi subsystem.
Signed-off-by: Frank Seidel <frank@f-seidel.de>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/sleep.c')
-rw-r--r-- | drivers/acpi/sleep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c index 7e3c609cbef..dfc09c45d70 100644 --- a/drivers/acpi/sleep.c +++ b/drivers/acpi/sleep.c @@ -679,7 +679,7 @@ static void acpi_power_off_prepare(void) static void acpi_power_off(void) { /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */ - printk("%s called\n", __func__); + printk(KERN_DEBUG "%s called\n", __func__); local_irq_disable(); acpi_enable_wakeup_device(ACPI_STATE_S5); acpi_enter_sleep_state(ACPI_STATE_S5); |