mptable: Refactor mptable generation some more
[coreboot.git] / src / mainboard / dell / s1850 / mptable.c
index 334e6ff2b5f486aee037fa59df7cd483ef59695d..a71dab03a26705dad3b11bbffb9d7f49e2b8f679 100644 (file)
@@ -148,12 +148,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)