diff options
author | Michal Simek <Monstr@seznam.cz> | 2007-08-16 08:54:10 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2007-08-16 11:55:27 +0200 |
commit | 002275a3ed8b114885f6702d6d544d0780dfe689 (patch) | |
tree | dc2622e4db94f68769ef5b4bba07655ac42731bc /drivers/bios_emulator/besys.c | |
parent | 2d78074d2e806edc380c1464eb9e5df335ece65e (diff) | |
download | u-boot-002275a3ed8b114885f6702d6d544d0780dfe689.tar.gz |
Bios emulator - fix microblaze toolchain problem
microblaze CPU have problem with bios_emulator code.
Microblaze toolchain doesn't support PRAGMA PACK.
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'drivers/bios_emulator/besys.c')
-rw-r--r-- | drivers/bios_emulator/besys.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/bios_emulator/besys.c b/drivers/bios_emulator/besys.c index 4c4bc8d7ba..8f1d8b29d5 100644 --- a/drivers/bios_emulator/besys.c +++ b/drivers/bios_emulator/besys.c @@ -47,9 +47,12 @@ * ****************************************************************************/ -#include "biosemui.h" +#include <common.h> #if defined(CONFIG_BIOSEMU) + +#include "biosemui.h" + /*------------------------- Global Variables ------------------------------*/ #ifndef __i386__ |