mptable: Refactor mptable generation some more
[coreboot.git] / src / mainboard / hp / dl145_g3 / mptable.c
index f0786a08e197ef28107b2397c873df82d1f881f7..466b7fcf4c645417dfc9cb0b2a2d42f1ee9924c0 100644 (file)
@@ -179,11 +179,7 @@ static void *smp_write_config_table(void *v)
 
 
        /* 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)