mptable: Refactor mptable generation some more
[coreboot.git] / src / mainboard / sunw / ultra40 / mptable.c
index 7e6c01891eb5ed0b01d0cab9812e10a398f5e925..c00c4b88e849659f0b88307581d2d2c897693441 100644 (file)
@@ -186,11 +186,7 @@ static void *smp_write_config_table(void *v)
        /* There is no extension information... */
 
        /* Compute the checksums */
-       mc->mpe_checksum = smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
-       mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
-       printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
-               mc, smp_next_mpe_entry(mc));
-       return smp_next_mpe_entry(mc);
+       return mptable_finalize(mc);
 }
 
 unsigned long write_smp_table(unsigned long addr)