mptable: Refactor mptable generation some more
[coreboot.git] / src / mainboard / tyan / s2912_fam10 / mptable.c
index 6778565d5ac7c3e55d8ad3e4e64c9c5f4b8c72fd..393362b43f1bcff418b0b49d8531fc35ce2c0349 100644 (file)
@@ -106,11 +106,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)