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:
committed by
Stefan Reinauer
parent
90308bb752
commit
fc2e8edc23
@@ -250,7 +250,7 @@ void cpu_initialize(void)
|
|||||||
set_cpu_ops(cpu);
|
set_cpu_ops(cpu);
|
||||||
cpu->device += c.x86_mask;
|
cpu->device += c.x86_mask;
|
||||||
if(!cpu->ops) die("Unknown cpu");
|
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);
|
cpu->ops->init(cpu);
|
||||||
}
|
}
|
||||||
|
|
||||||
printk_info("CPU #%d Initialized\n", info->index);
|
printk_info("CPU #%d initialized\n", info->index);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@@ -64,6 +64,6 @@ void cpu_initialize(void)
|
|||||||
#endif
|
#endif
|
||||||
/* Turn on caching if we haven't already */
|
/* 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;
|
return;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user