Trivial stuff:
* fix a warning that should not be one. * fix capitalization typo Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3873 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
90308bb752
commit
fc2e8edc23
|
@ -250,7 +250,7 @@ void cpu_initialize(void)
|
|||
set_cpu_ops(cpu);
|
||||
cpu->device += c.x86_mask;
|
||||
if(!cpu->ops) die("Unknown cpu");
|
||||
printk_debug("WARNING: Using generic cpu ops\n");
|
||||
printk_debug("Using generic cpu ops (good)\n");
|
||||
}
|
||||
|
||||
|
||||
|
@ -261,7 +261,7 @@ void cpu_initialize(void)
|
|||
cpu->ops->init(cpu);
|
||||
}
|
||||
|
||||
printk_info("CPU #%d Initialized\n", info->index);
|
||||
printk_info("CPU #%d initialized\n", info->index);
|
||||
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -64,6 +64,6 @@ void cpu_initialize(void)
|
|||
#endif
|
||||
/* Turn on caching if we haven't already */
|
||||
|
||||
printk_info("CPU #%d Initialized\n", info->index);
|
||||
printk_info("CPU #%d initialized\n", info->index);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue