remove unused l2 cache configure, if we really need it some time in the
furutre, it should be in cpu specific fixup code git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1554 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
a60bf67b32
commit
fd3f2d7945
|
@ -135,15 +135,8 @@ unsigned long cpu_initialize(struct mem_range *mem)
|
||||||
/* some cpus need a fixup done. This is the hook for doing that. */
|
/* some cpus need a fixup done. This is the hook for doing that. */
|
||||||
cpufixup(mem);
|
cpufixup(mem);
|
||||||
|
|
||||||
#if 0
|
|
||||||
/* now that everything is really up, enable the l2 cache if desired.
|
|
||||||
* The enable can wait until this point, because linuxbios and it's
|
|
||||||
* data areas are tiny, easily fitting into the L1 cache.
|
|
||||||
*/
|
|
||||||
configure_l2_cache();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
interrupts_on();
|
interrupts_on();
|
||||||
|
|
||||||
processor_id = this_processors_id();
|
processor_id = this_processors_id();
|
||||||
printk_info("CPU #%d Initialized\n", processor_id);
|
printk_info("CPU #%d Initialized\n", processor_id);
|
||||||
return processor_id;
|
return processor_id;
|
||||||
|
|
Loading…
Reference in New Issue