mptable: Refactor mptable generation some more
[coreboot.git] / src / mainboard / iwill / dk8_htx / mptable.c
index 8aad0097f303462fb989828ad967ef6df03ce6d3..fd53bd7b999aca9f1ff69a6e97dc0abcb6255d2d 100644 (file)
@@ -171,11 +171,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)