mptable: Refactor mptable generation some more
[coreboot.git] / src / mainboard / supermicro / x6dhr_ig2 / mptable.c
index a6ee5a6ac57e8b3c1e19f0928db14adc8be20a3a..a374f5c6d7196d9b8fa0ec07af3585e10f000597 100644 (file)
@@ -157,12 +157,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)