Commit 874244f7 authored by Jesper Juhl's avatar Jesper Juhl Committed by Linus Torvalds

[PATCH] tidy up the identify_cpu() output

Here's a patch to line up the "CPU: After * identify, caps:" messages
produced by printk's in arch/i386/kernel/cpu/common.c
Signed-off-by: default avatarJesper Juhl <juhl-lkml@dif.dk>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent e903c6f9
...@@ -329,7 +329,7 @@ void __init identify_cpu(struct cpuinfo_x86 *c) ...@@ -329,7 +329,7 @@ void __init identify_cpu(struct cpuinfo_x86 *c)
generic_identify(c); generic_identify(c);
printk(KERN_DEBUG "CPU: After generic identify, caps: %08lx %08lx %08lx %08lx\n", printk(KERN_DEBUG "CPU: After generic identify, caps: %08lx %08lx %08lx %08lx\n",
c->x86_capability[0], c->x86_capability[0],
c->x86_capability[1], c->x86_capability[1],
c->x86_capability[2], c->x86_capability[2],
...@@ -338,7 +338,7 @@ void __init identify_cpu(struct cpuinfo_x86 *c) ...@@ -338,7 +338,7 @@ void __init identify_cpu(struct cpuinfo_x86 *c)
if (this_cpu->c_identify) { if (this_cpu->c_identify) {
this_cpu->c_identify(c); this_cpu->c_identify(c);
printk(KERN_DEBUG "CPU: After vendor identify, caps: %08lx %08lx %08lx %08lx\n", printk(KERN_DEBUG "CPU: After vendor identify, caps: %08lx %08lx %08lx %08lx\n",
c->x86_capability[0], c->x86_capability[0],
c->x86_capability[1], c->x86_capability[1],
c->x86_capability[2], c->x86_capability[2],
...@@ -393,7 +393,7 @@ void __init identify_cpu(struct cpuinfo_x86 *c) ...@@ -393,7 +393,7 @@ void __init identify_cpu(struct cpuinfo_x86 *c)
/* Now the feature flags better reflect actual CPU features! */ /* Now the feature flags better reflect actual CPU features! */
printk(KERN_DEBUG "CPU: After all inits, caps: %08lx %08lx %08lx %08lx\n", printk(KERN_DEBUG "CPU: After all inits, caps: %08lx %08lx %08lx %08lx\n",
c->x86_capability[0], c->x86_capability[0],
c->x86_capability[1], c->x86_capability[1],
c->x86_capability[2], c->x86_capability[2],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment