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/x86emu/ops.c | |
| parent | 6c33c78557ca6f8da68c01ce33e278695197d3f4 (diff) | |
| download | olio-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/ops.c')
| -rw-r--r-- | drivers/bios_emulator/x86emu/ops.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/bios_emulator/x86emu/ops.c b/drivers/bios_emulator/x86emu/ops.c index d1380ceec..d334fb5b1 100644 --- a/drivers/bios_emulator/x86emu/ops.c +++ b/drivers/bios_emulator/x86emu/ops.c @@ -76,6 +76,9 @@ ****************************************************************************/ #include "x86emu/x86emui.h" + +#if defined(CONFIG_BIOSEMU) + /*----------------------------- Implementation ----------------------------*/ /* constant arrays to do several instructions in just one function */ @@ -5429,3 +5432,5 @@ void (*x86emu_optab[256])(u8) __attribute__ ((section(".got2"))) = /* 0xfe */ x86emuOp_opcFE_byte_RM, /* 0xff */ x86emuOp_opcFF_word_RM, }; + +#endif |