mptable: Refactor mptable generation some more
[coreboot.git] / src / mainboard / asus / m2n-e / mptable.c
index 716c754eecb33a1e60565fab4a719d5dddf176c0..29b9d07e444c13e9df0d6dbec07669dc934bfa65 100644 (file)
@@ -94,12 +94,7 @@ static void *smp_write_config_table(void *v)
        mptable_lintsrc(mc, bus_isa);
 
        /* 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)