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:
Stefan Reinauer 2009-01-20 19:17:11 +00:00 committed by Stefan Reinauer
parent 90308bb752
commit fc2e8edc23
2 changed files with 3 additions and 3 deletions

View File

@ -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;
}

View File

@ -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;
}