* [patch] x86: Trivial printk fix in efi.c
@ 2008-10-02 22:32 Russ Anderson
2008-10-03 8:19 ` Ingo Molnar
0 siblings, 1 reply; 2+ messages in thread
From: Russ Anderson @ 2008-10-02 22:32 UTC (permalink / raw)
To: linux-kernel, mingo, tglx; +Cc: Russ Anderson
[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 <rja@sgi.com>
---
arch/x86/kernel/efi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: linux/arch/x86/kernel/efi.c
===================================================================
--- linux.orig/arch/x86/kernel/efi.c 2008-10-02 17:22:58.000000000 -0500
+++ linux/arch/x86/kernel/efi.c 2008-10-02 17:27:35.000000000 -0500
@@ -415,7 +415,7 @@ void __init efi_init(void)
printk(KERN_ERR "Could not map the EFI memory map!\n");
memmap.map_end = memmap.map + (memmap.nr_map * memmap.desc_size);
if (memmap.desc_size != sizeof(efi_memory_desc_t))
- printk(KERN_WARNING "Kernel-defined memdesc"
+ printk(KERN_WARNING "Kernel-defined memdesc "
"doesn't match the one from EFI!\n");
if (add_efi_memmap)
do_add_efi_memmap();
--
Russ Anderson, OS RAS/Partitioning Project Lead
SGI - Silicon Graphics Inc rja@sgi.com
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [patch] x86: Trivial printk fix in efi.c
2008-10-02 22:32 [patch] x86: Trivial printk fix in efi.c Russ Anderson
@ 2008-10-03 8:19 ` Ingo Molnar
0 siblings, 0 replies; 2+ messages in thread
From: Ingo Molnar @ 2008-10-03 8:19 UTC (permalink / raw)
To: Russ Anderson; +Cc: linux-kernel, tglx, H. Peter Anvin
* Russ Anderson <rja@sgi.com> wrote:
> [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.
> - printk(KERN_WARNING "Kernel-defined memdesc"
> + printk(KERN_WARNING "Kernel-defined memdesc "
> "doesn't match the one from EFI!\n");
the dangers of breaking a string in the middle.
applied your fix in the form below to tip/x86/cleanups - thanks Russ!
Ingo
------------------->
>From 175e438f7a2de9d94110046be48697969569736a Mon Sep 17 00:00:00 2001
From: Russ Anderson <rja@sgi.com>
Date: Thu, 2 Oct 2008 17:32:06 -0500
Subject: [PATCH] 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 <rja@sgi.com>
Cc: Russ Anderson <rja@sgi.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
arch/x86/kernel/efi.c | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/arch/x86/kernel/efi.c b/arch/x86/kernel/efi.c
index 06cc8d4..945a31c 100644
--- a/arch/x86/kernel/efi.c
+++ b/arch/x86/kernel/efi.c
@@ -414,9 +414,11 @@ void __init efi_init(void)
if (memmap.map == NULL)
printk(KERN_ERR "Could not map the EFI memory map!\n");
memmap.map_end = memmap.map + (memmap.nr_map * memmap.desc_size);
+
if (memmap.desc_size != sizeof(efi_memory_desc_t))
- printk(KERN_WARNING "Kernel-defined memdesc"
- "doesn't match the one from EFI!\n");
+ printk(KERN_WARNING
+ "Kernel-defined memdesc doesn't match the one from EFI!\n");
+
if (add_efi_memmap)
do_add_efi_memmap();
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-10-03 8:20 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-10-02 22:32 [patch] x86: Trivial printk fix in efi.c Russ Anderson
2008-10-03 8:19 ` Ingo Molnar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox