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>
This commit is contained in:
Simon Glass 2014-12-10 20:12:01 -07:00
parent 0a54745fc2
commit f46f3f356f
2 changed files with 2 additions and 2 deletions

View File

@ -48,8 +48,8 @@
****************************************************************************/
#define __io
#include <asm/io.h>
#include <common.h>
#include <asm/io.h>
#include "biosemui.h"
/*------------------------- Global Variables ------------------------------*/

View File

@ -42,8 +42,8 @@
****************************************************************************/
#define __io
#include <asm/io.h>
#include <common.h>
#include <asm/io.h>
#include "biosemui.h"
/*----------------------------- Implementation ----------------------------*/