From: Meelis Roos Add a newline to printk so next line does not run together with this line. Signed-off-by: Meelis Roos Cc: Len Brown Signed-off-by: Andrew Morton --- drivers/acpi/ec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/acpi/ec.c~acpi-cure-run-together-printk-lines drivers/acpi/ec.c --- a/drivers/acpi/ec.c~acpi-cure-run-together-printk-lines +++ a/drivers/acpi/ec.c @@ -685,7 +685,7 @@ static int ec_parse_device(struct acpi_e ec->handle = handle; - printk(KERN_INFO PREFIX "GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx", + printk(KERN_INFO PREFIX "GPE = 0x%lx, I/O: command/status = 0x%lx, data = 0x%lx\n", ec->gpe, ec->command_addr, ec->data_addr); return 0; _