mptable: Refactor mptable generation some more
[coreboot.git] / src / mainboard / supermicro / x6dai_g / mptable.c
index 4b86f3d4aabd1dc805cf39143a5e57ed8bbac065..acd719d75159ce82b38183cc7ebd333dd1b12819 100644 (file)
@@ -77,12 +77,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)