diff options
author | Eric Biederman <ebiederm@xmission.com> | 2003-06-19 03:34:54 +0000 |
---|---|---|
committer | Eric Biederman <ebiederm@xmission.com> | 2003-06-19 03:34:54 +0000 |
commit | 9dbd46077615b14f28f6a6b398c392f608af68e1 (patch) | |
tree | d1e2097785c18d4e17c10c99aba7310c7b84fc93 /src | |
parent | d3283ec05f51056faa18610e952ccc81cb738313 (diff) |
- Remove bogus #if CONFIG_SMP test
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@884 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r-- | src/arch/i386/boot/tables.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/arch/i386/boot/tables.c b/src/arch/i386/boot/tables.c index 45e2283001..1b840ff379 100644 --- a/src/arch/i386/boot/tables.c +++ b/src/arch/i386/boot/tables.c @@ -52,11 +52,10 @@ struct lb_memory *write_tables(struct mem_range *mem, unsigned long *processor_m /* copy the smp block to address 0 */ post_code(0x96); -#if CONFIG_SMP + /* The smp table must be in 0-1K, 639K-640K, or 960K-1M */ remove_logical_cpus(processor_map); low_table_end = write_smp_table(low_table_end, processor_map); -#endif /* Don't write anything in the traditional x86 BIOS data segment */ if (low_table_end < 0x500) { |