mptable: Refactor mptable generation some more
[coreboot.git] / src / mainboard / supermicro / x6dhe_g2 / mptable.c
index 2fae456fb58aa11d3817299809315fece2399fd1..e39a700ec7afcd0f1c60cdd342cede6538545912 100644 (file)
@@ -122,12 +122,7 @@ static void *smp_write_config_table(void *v)
        /* FIXME verify I have the irqs handled for all of the risers */
 
        /* 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)