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> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4158 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
507d843eb0
commit
5bba7529d2
|
@ -197,8 +197,8 @@ void smp_write_intsrc(struct mp_config_table *mc,
|
||||||
mpc->mpc_dstapic = dstapic;
|
mpc->mpc_dstapic = dstapic;
|
||||||
mpc->mpc_dstirq = dstirq;
|
mpc->mpc_dstirq = dstirq;
|
||||||
smp_add_mpc_entry(mc, sizeof(*mpc));
|
smp_add_mpc_entry(mc, sizeof(*mpc));
|
||||||
#if CONFIG_DEBUG_MPTABLE == 1
|
#ifdef DEBUG_MPTABLE
|
||||||
printk_info("add intsrc srcbus 0x%x srcbusirq 0x%x, dstapic 0x%x, dstirq 0x%x\n",
|
printk_debug("add intsrc srcbus 0x%x srcbusirq 0x%x, dstapic 0x%x, dstirq 0x%x\n",
|
||||||
srcbus, srcbusirq, dstapic, dstirq);
|
srcbus, srcbusirq, dstapic, dstirq);
|
||||||
hexdump(__func__, mpc, sizeof(*mpc));
|
hexdump(__func__, mpc, sizeof(*mpc));
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue