aboutsummaryrefslogtreecommitdiff
path: root/src/arch/i386/lib
diff options
context:
space:
mode:
authorLi-Ta Lo <ollie@lanl.gov>2004-05-12 16:34:46 +0000
committerLi-Ta Lo <ollie@lanl.gov>2004-05-12 16:34:46 +0000
commitfd3f2d794538852e77e852e99fe7d7d43ceee93a (patch)
treee3b97b6032648743137d85376e13e1ce69add7e8 /src/arch/i386/lib
parenta60bf67b32090ef97cfb78e7968f5ece9e344063 (diff)
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
Diffstat (limited to 'src/arch/i386/lib')
-rw-r--r--src/arch/i386/lib/cpu.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/arch/i386/lib/cpu.c b/src/arch/i386/lib/cpu.c
index 9af2bfb8c0..2006bc3a83 100644
--- a/src/arch/i386/lib/cpu.c
+++ b/src/arch/i386/lib/cpu.c
@@ -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. */
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();
+
processor_id = this_processors_id();
printk_info("CPU #%d Initialized\n", processor_id);
return processor_id;