Skip to content

Commit 175e438

Browse files
Russ AndersonIngo Molnar
authored andcommitted
x86: trivial printk fix in efi.c
[patch] x86: Trivial printk fix in efi.c The following line is lacking a space between "memdesc" and "doesn't". "Kernel-defined memdescdoesn't match the one from EFI!" Fixed the printk by adding a space. Signed-off-by: Russ Anderson <[email protected]> Cc: Russ Anderson <[email protected]> Signed-off-by: Ingo Molnar <[email protected]>
1 parent 153dab7 commit 175e438

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

arch/x86/kernel/efi.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -414,9 +414,11 @@ void __init efi_init(void)
414414
if (memmap.map == NULL)
415415
printk(KERN_ERR "Could not map the EFI memory map!\n");
416416
memmap.map_end = memmap.map + (memmap.nr_map * memmap.desc_size);
417+
417418
if (memmap.desc_size != sizeof(efi_memory_desc_t))
418-
printk(KERN_WARNING "Kernel-defined memdesc"
419-
"doesn't match the one from EFI!\n");
419+
printk(KERN_WARNING
420+
"Kernel-defined memdesc doesn't match the one from EFI!\n");
421+
420422
if (add_efi_memmap)
421423
do_add_efi_memmap();
422424

0 commit comments

Comments
 (0)