aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLen Brown <len.brown@intel.com>2010-09-24 20:50:02 -0400
committerLen Brown <len.brown@intel.com>2010-09-28 23:30:40 -0400
commite9a64ed4994db04c9963495b03d8a86538e3ad55 (patch)
tree13e9128b19542eb1432d980554b9cc06845320fd
parent3265eba0bed7645cacd5e2cb3614d504b5ac29e6 (diff)
downloadlinux-hpc-e9a64ed4994db04c9963495b03d8a86538e3ad55.tar.gz
acpi_idle: add missing \n to printk
otherwise, these two lines print as one: ACPI: acpi_idle yielding to intel_idle ACPI: SSDT 3f5d8741 00203 (v02 PmRef Cpu0Ist 00003000 INTL 20050624) Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r--drivers/acpi/processor_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/processor_driver.c b/drivers/acpi/processor_driver.c
index 15602189238942..347eb21b235302 100644
--- a/drivers/acpi/processor_driver.c
+++ b/drivers/acpi/processor_driver.c
@@ -850,7 +850,7 @@ static int __init acpi_processor_init(void)
printk(KERN_DEBUG "ACPI: %s registered with cpuidle\n",
acpi_idle_driver.name);
} else {
- printk(KERN_DEBUG "ACPI: acpi_idle yielding to %s",
+ printk(KERN_DEBUG "ACPI: acpi_idle yielding to %s\n",
cpuidle_get_driver()->name);
}