diff options
Diffstat (limited to 'src/include/x86emu/x86emu.h')
-rw-r--r-- | src/include/x86emu/x86emu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/x86emu/x86emu.h b/src/include/x86emu/x86emu.h index bd01f20cc4..c52b5567a3 100644 --- a/src/include/x86emu/x86emu.h +++ b/src/include/x86emu/x86emu.h @@ -49,7 +49,8 @@ /* FIXME: undefine printk for the moment */ #ifdef COREBOOT_VERSION #include "console/console.h" -#define printk printk_debug +#undef printk +#define printk(x...) do_printk(BIOS_DEBUG, x) #else #define printk printf #endif |