The patch titled ACPI: cure run-together printk lines has been added to the -mm tree. Its filename is acpi-cure-run-together-printk-lines.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: ACPI: cure run-together printk lines From: Meelis Roos <mroos@xxxxxxxx> Add a newline to printk so next line does not run together with this line. Signed-off-by: Meelis Roos <mroos@xxxxxxxx> Cc: Len Brown <lenb@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- 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; _ Patches currently in -mm which might be from mroos@xxxxxxxx are acpi-cure-run-together-printk-lines.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html