Author: stepan Date: 2009-04-22 01:00:14 +0200 (Wed, 22 Apr 2009) New Revision: 4158
Modified: trunk/coreboot-v2/src/arch/i386/smp/mpspec.c Log: fix a warning for a misnamed define, and make a debug message printk_debug (trivial)
Signed-off-by: Stefan Reinauer stepan@coresystems.de Acked-by: Stefan Reinauer stepan@coresystems.de
Modified: trunk/coreboot-v2/src/arch/i386/smp/mpspec.c =================================================================== --- trunk/coreboot-v2/src/arch/i386/smp/mpspec.c 2009-04-21 22:59:00 UTC (rev 4157) +++ trunk/coreboot-v2/src/arch/i386/smp/mpspec.c 2009-04-21 23:00:14 UTC (rev 4158) @@ -197,8 +197,8 @@ mpc->mpc_dstapic = dstapic; mpc->mpc_dstirq = dstirq; smp_add_mpc_entry(mc, sizeof(*mpc)); -#if CONFIG_DEBUG_MPTABLE == 1 - printk_info("add intsrc srcbus 0x%x srcbusirq 0x%x, dstapic 0x%x, dstirq 0x%x\n", +#ifdef DEBUG_MPTABLE + printk_debug("add intsrc srcbus 0x%x srcbusirq 0x%x, dstapic 0x%x, dstirq 0x%x\n", srcbus, srcbusirq, dstapic, dstirq); hexdump(__func__, mpc, sizeof(*mpc)); #endif