Commit-ID: e66880808960322d8126f878d7fe315a3f1ada74 Gitweb: http://git.kernel.org/tip/e66880808960322d8126f878d7fe315a3f1ada74 Author: Colin Ian King <[email protected]> AuthorDate: Tue, 31 Jan 2017 13:21:38 +0000 Committer: Ingo Molnar <[email protected]> CommitDate: Wed, 1 Feb 2017 08:45:45 +0100
efi/esrt: Fix typo in pr_err() message Signed-off-by: Colin Ian King <[email protected]> Signed-off-by: Ard Biesheuvel <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: Matt Fleming <[email protected]> Cc: Peter Zijlstra <[email protected]> Cc: Thomas Gleixner <[email protected]> Cc: [email protected] Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ingo Molnar <[email protected]> --- drivers/firmware/efi/esrt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/firmware/efi/esrt.c b/drivers/firmware/efi/esrt.c index 1491407..08b0268 100644 --- a/drivers/firmware/efi/esrt.c +++ b/drivers/firmware/efi/esrt.c @@ -269,7 +269,7 @@ void __init efi_esrt_init(void) max -= efi.esrt; if (max < size) { - pr_err("ESRT header doen't fit on single memory map entry. (size: %zu max: %zu)\n", + pr_err("ESRT header doesn't fit on single memory map entry. (size: %zu max: %zu)\n", size, max); return; }

