From 5bba7529d235368530a6e5248710ac053e142f0a Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Tue, 21 Apr 2009 23:00:14 +0000 Subject: [PATCH] fix a warning for a misnamed define, and make a debug message printk_debug (trivial) Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4158 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/arch/i386/smp/mpspec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arch/i386/smp/mpspec.c b/src/arch/i386/smp/mpspec.c index 4e2f76dd53..f72e362533 100644 --- a/src/arch/i386/smp/mpspec.c +++ b/src/arch/i386/smp/mpspec.c @@ -197,8 +197,8 @@ void smp_write_intsrc(struct mp_config_table *mc, 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