printk_foo -> printk(BIOS_FOO, ...)
[coreboot.git] / src / mainboard / tyan / s2912 / mptable.c
index ff03ed7c952ac5fd6f7c7f2d2290326877f4e579..aa9a7c6703c8b12d0e2d0a343404d2b394d98910 100644 (file)
@@ -29,6 +29,8 @@
 
 #include "mb_sysconf.h"
 
+extern void get_bus_conf(void);
+
 void *smp_write_config_table(void *v)
 {
        static const char sig[4] = "PCMP";
@@ -145,7 +147,7 @@ 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_debug("Wrote the mp table end at: %p - %p\n",
+       printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n",
                mc, smp_next_mpe_entry(mc));
        return smp_next_mpe_entry(mc);
 }