We forgot the newline at the end of two messages. Add it. Acked-by: Matt Fleming <matt.fleming@xxxxxxxxx> Signed-off-by: Tony Luck <tony.luck@xxxxxxxxx> --- diff --git a/drivers/firmware/efi/cper.c b/drivers/firmware/efi/cper.c index 1491dd4f08f9..9f59f6ba271a 100644 --- a/drivers/firmware/efi/cper.c +++ b/drivers/firmware/efi/cper.c @@ -240,9 +240,9 @@ static void cper_print_mem(const char *pfx, const struct cper_sec_mem_err *mem) const char *bank = NULL, *device = NULL; dmi_memdev_name(mem->mem_dev_handle, &bank, &device); if (bank != NULL && device != NULL) - printk("%s""DIMM location: %s %s", pfx, bank, device); + printk("%s""DIMM location: %s %s\n", pfx, bank, device); else - printk("%s""DIMM DMI handle: 0x%.4x", + printk("%s""DIMM DMI handle: 0x%.4x\n", pfx, mem->mem_dev_handle); } } -- To unsubscribe from this list: send the line "unsubscribe linux-efi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html