mptable: Refactor mptable generation some more
[coreboot.git] / src / mainboard / arima / hdama / mptable.c
index 648a31390384a2d3824db5a5dd0631971c513549..19bbf258a81409d8715a5c2022291c047577aa23 100644 (file)
@@ -248,11 +248,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);
 }
 
 static void reboot_if_hotswap(void)