diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/i386/lib/cpu.c | 9 |
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; |