summaryrefslogtreecommitdiff
path: root/drivers/bios_emulator/biosemu.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/biosemu.c
parent6c33c78557ca6f8da68c01ce33e278695197d3f4 (diff)
downloadu-boot-imx-7c4c3722a38d40b0cf537ddae72b04f4088b190c.zip
u-boot-imx-7c4c3722a38d40b0cf537ddae72b04f4088b190c.tar.gz
u-boot-imx-7c4c3722a38d40b0cf537ddae72b04f4088b190c.tar.bz2
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/biosemu.c')
-rw-r--r--drivers/bios_emulator/biosemu.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/bios_emulator/biosemu.c b/drivers/bios_emulator/biosemu.c
index 06d4ad3..4c3aedf 100644
--- a/drivers/bios_emulator/biosemu.c
+++ b/drivers/bios_emulator/biosemu.c
@@ -48,6 +48,8 @@
#include "biosemui.h"
#include <malloc.h>
+#if defined(CONFIG_BIOSEMU)
+
BE_sysEnv _BE_env = {{0}};
static X86EMU_memFuncs _BE_mem __attribute__((section(".got2"))) = {
BE_rdb,
@@ -368,3 +370,4 @@ int X86API BE_int86x(int intno, RMREGS * in, RMREGS * out, RMSREGS * sregs)
sregs->gs = M.x86.R_GS;
return out->x.ax;
}
+#endif