LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] x86: fix cpu info in dmesg
@ 2008-02-01 20:31 Marcin Slusarz
2008-02-17 16:16 ` Ingo Molnar
0 siblings, 1 reply; 2+ messages in thread
From: Marcin Slusarz @ 2008-02-01 20:31 UTC (permalink / raw)
To: LKML; +Cc: Thomas Gleixner, Ingo Molnar
I'm not sure whether it's the right fix, but it doesn't make sense to call
print_cpu_info without leading printk...
---
fix print_cpu_info, because it produced on boot:
CPU: <6>AMD Athlon(tm) 64 Processor 3200+ stepping 00
instead of
CPU: AMD Athlon(tm) 64 Processor 3200+ stepping 00
(broken since 04e1ba852132c9ad006affcd5b8c8606295170b0 -
x86: cleanup kernel/setup_64.c)
Signed-off-by: Marcin Slusarz <marcin.slusarz@gmail.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
---
arch/x86/kernel/setup_64.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/x86/kernel/setup_64.c b/arch/x86/kernel/setup_64.c
index 77fb87b..f3b30b9 100644
--- a/arch/x86/kernel/setup_64.c
+++ b/arch/x86/kernel/setup_64.c
@@ -1039,7 +1039,7 @@ __setup("noclflush", setup_noclflush);
void __cpuinit print_cpu_info(struct cpuinfo_x86 *c)
{
if (c->x86_model_id[0])
- printk(KERN_INFO "%s", c->x86_model_id);
+ printk(KERN_CONT "%s", c->x86_model_id);
if (c->x86_mask || c->cpuid_level >= 0)
printk(KERN_CONT " stepping %02x\n", c->x86_mask);
--
1.5.3.7
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] x86: fix cpu info in dmesg
2008-02-01 20:31 [PATCH] x86: fix cpu info in dmesg Marcin Slusarz
@ 2008-02-17 16:16 ` Ingo Molnar
0 siblings, 0 replies; 2+ messages in thread
From: Ingo Molnar @ 2008-02-17 16:16 UTC (permalink / raw)
To: Marcin Slusarz; +Cc: LKML, Thomas Gleixner
* Marcin Slusarz <marcin.slusarz@gmail.com> wrote:
> I'm not sure whether it's the right fix, but it doesn't make sense to call
> print_cpu_info without leading printk...
thanks, applied.
Ingo
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-02-17 16:16 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-02-01 20:31 [PATCH] x86: fix cpu info in dmesg Marcin Slusarz
2008-02-17 16:16 ` Ingo Molnar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).