summaryrefslogtreecommitdiff
path: root/drivers/bios_emulator/x86emu/debug.c
diff options
context:
space:
mode:
authorJason Jin <Jason.jin@freescale.com>2007-08-07 16:17:06 +0800
committerGerald Van Baren <vanbaren@cideas.com>2007-08-07 10:23:58 -0400
commit7c4c3722a38d40b0cf537ddae72b04f4088b190c (patch)
tree1207c492fea2401fd964eea9a6960fc6e763cc25 /drivers/bios_emulator/x86emu/debug.c
parent6c33c78557ca6f8da68c01ce33e278695197d3f4 (diff)
downloadolio-uboot-2014.01-7c4c3722a38d40b0cf537ddae72b04f4088b190c.tar.xz
olio-uboot-2014.01-7c4c3722a38d40b0cf537ddae72b04f4088b190c.zip
Add CONFIG_BIOSEMU define to guard all the bios emulator code
This patch fix the compile issue on the board that did not enable the bios emulator
Diffstat (limited to 'drivers/bios_emulator/x86emu/debug.c')
-rw-r--r--drivers/bios_emulator/x86emu/debug.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/bios_emulator/x86emu/debug.c b/drivers/bios_emulator/x86emu/debug.c
index 0f58a6963..915739c5b 100644
--- a/drivers/bios_emulator/x86emu/debug.c
+++ b/drivers/bios_emulator/x86emu/debug.c
@@ -40,6 +40,8 @@
#include "x86emu/x86emui.h"
#include <stdarg.h>
+#if defined(CONFIG_BIOSEMU)
+
/*----------------------------- Implementation ----------------------------*/
#ifdef DEBUG
@@ -459,3 +461,5 @@ void x86emu_dump_xregs(void)
printk("NC ");
printk("\n");
}
+
+#endif