diff options
author | Jason Jin <Jason.jin@freescale.com> | 2007-08-07 16:17:06 +0800 |
---|---|---|
committer | Gerald Van Baren <vanbaren@cideas.com> | 2007-08-07 10:23:58 -0400 |
commit | 7c4c3722a38d40b0cf537ddae72b04f4088b190c (patch) | |
tree | 1207c492fea2401fd964eea9a6960fc6e763cc25 /drivers/bios_emulator/besys.c | |
parent | 6c33c78557ca6f8da68c01ce33e278695197d3f4 (diff) | |
download | u-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/besys.c')
-rw-r--r-- | drivers/bios_emulator/besys.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/bios_emulator/besys.c b/drivers/bios_emulator/besys.c index 2a8e1a0..4c4bc8d 100644 --- a/drivers/bios_emulator/besys.c +++ b/drivers/bios_emulator/besys.c @@ -49,6 +49,7 @@ #include "biosemui.h" +#if defined(CONFIG_BIOSEMU) /*------------------------- Global Variables ------------------------------*/ #ifndef __i386__ @@ -717,3 +718,4 @@ void X86API BE_outl(X86EMU_pioAddr port, u32 val) #endif LOG_outpd(port, val); } +#endif |