diff options
author | Simon Glass <sjg@chromium.org> | 2014-12-10 20:12:01 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-12-13 15:08:04 -0700 |
commit | f46f3f356f684a20d1ccb50c943536591a7697f3 (patch) | |
tree | 0f231c0f60b91a5bebdab1a545797487aae249a6 /drivers/bios_emulator/besys.c | |
parent | 0a54745fc2537cbbd9d9e405086cfff39d37c55e (diff) | |
download | u-boot-f46f3f356f684a20d1ccb50c943536591a7697f3.tar.gz |
bios_emulator: Correct ordering of includes
We should include common.h before other includes. This actually causes
a build error on chromebook_link.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/bios_emulator/besys.c')
-rw-r--r-- | drivers/bios_emulator/besys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bios_emulator/besys.c b/drivers/bios_emulator/besys.c index 752a928f66..02c4286a85 100644 --- a/drivers/bios_emulator/besys.c +++ b/drivers/bios_emulator/besys.c @@ -48,8 +48,8 @@ ****************************************************************************/ #define __io -#include <asm/io.h> #include <common.h> +#include <asm/io.h> #include "biosemui.h" /*------------------------- Global Variables ------------------------------*/ |