diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-08-27 22:36:13 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-08-27 22:36:13 +0000 |
commit | dc23c95d2fa52453a3333c9cb91a82ab7372985c (patch) | |
tree | 6d3a1d73200f856dfab2003c6e75f149b57c6b04 /util/x86emu | |
parent | 7ec3f67294968a0c5346b9aad2621724e6340ef4 (diff) | |
download | coreboot-dc23c95d2fa52453a3333c9cb91a82ab7372985c.tar.gz coreboot-dc23c95d2fa52453a3333c9cb91a82ab7372985c.tar.bz2 coreboot-dc23c95d2fa52453a3333c9cb91a82ab7372985c.zip |
For Carl-Daniel: make x86emu silent again.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4603 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/x86emu')
-rw-r--r-- | util/x86emu/include/x86emu/x86emu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/x86emu/include/x86emu/x86emu.h b/util/x86emu/include/x86emu/x86emu.h index a4b09e3f18d6..823f49772bcf 100644 --- a/util/x86emu/include/x86emu/x86emu.h +++ b/util/x86emu/include/x86emu/x86emu.h @@ -47,6 +47,9 @@ #include <console/console.h> #undef printk #define printk(x...) do_printk(BIOS_DEBUG, x) +#if defined(CONFIG_DEBUG) && (CONFIG_DEBUG == 0) +#undef CONFIG_DEBUG +#endif #else #define printk printf #endif |