Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d8ff0bbf564f7ebf6c33ef6662d8f00c7d43ba80
Commit:     d8ff0bbf564f7ebf6c33ef6662d8f00c7d43ba80
Parent:     d76c1ae4d1f4f322d47e7c6e47a277384ba9d9cb
Author:     Marcin Slusarz <[EMAIL PROTECTED]>
AuthorDate: Fri Feb 1 21:31:51 2008 +0100
Committer:  Ingo Molnar <[EMAIL PROTECTED]>
CommitDate: Tue Feb 19 16:18:33 2008 +0100

    x86: fix printout ugliness in cpu info 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 <[EMAIL PROTECTED]>
    Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
---
 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 e186617..6fd804f 100644
--- a/arch/x86/kernel/setup_64.c
+++ b/arch/x86/kernel/setup_64.c
@@ -1046,7 +1046,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);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to