[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20171025101419.26369-2-ard.biesheuvel@linaro.org>
Date: Wed, 25 Oct 2017 11:14:18 +0100
From: Ard Biesheuvel <ard.biesheuvel@...aro.org>
To: linux-efi@...r.kernel.org, Ingo Molnar <mingo@...nel.org>,
Thomas Gleixner <tglx@...utronix.de>,
"H . Peter Anvin" <hpa@...or.com>
Cc: Arvind Yadav <arvind.yadav.cs@...il.com>,
Ard Biesheuvel <ard.biesheuvel@...aro.org>,
linux-kernel@...r.kernel.org, Jan Kiszka <jan.kiszka@...mens.com>,
Kweh Hock Leong <hock.leong.kweh@...el.com>,
Matt Fleming <matt@...eblueprint.co.uk>
Subject: [PATCH 1/2] efi/capsule-loader: pr_err() strings should end with newlines
From: Arvind Yadav <arvind.yadav.cs@...il.com>
pr_err() messages should terminated with a new-line to avoid
other messages being concatenated onto the end.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@...il.com>
Cc: Ard Biesheuvel <ard.biesheuvel@...aro.org>
Cc: Jan Kiszka <jan.kiszka@...mens.com>
Cc: Kweh Hock Leong <hock.leong.kweh@...el.com>
Signed-off-by: Matt Fleming <matt@...eblueprint.co.uk>
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@...aro.org>
---
drivers/firmware/efi/capsule-loader.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/firmware/efi/capsule-loader.c b/drivers/firmware/efi/capsule-loader.c
index ec8ac5c4dd84..51d2874942a2 100644
--- a/drivers/firmware/efi/capsule-loader.c
+++ b/drivers/firmware/efi/capsule-loader.c
@@ -49,7 +49,7 @@ int __efi_capsule_setup_info(struct capsule_info *cap_info)
pages_needed = ALIGN(cap_info->total_size, PAGE_SIZE) / PAGE_SIZE;
if (pages_needed == 0) {
- pr_err("invalid capsule size");
+ pr_err("invalid capsule size\n");
return -EINVAL;
}
--
2.11.0
Powered by blists - more mailing lists