mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
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:
parent
0a54745fc2
commit
f46f3f356f
2 changed files with 2 additions and 2 deletions
|
@ -48,8 +48,8 @@
|
|||
****************************************************************************/
|
||||
|
||||
#define __io
|
||||
#include <asm/io.h>
|
||||
#include <common.h>
|
||||
#include <asm/io.h>
|
||||
#include "biosemui.h"
|
||||
|
||||
/*------------------------- Global Variables ------------------------------*/
|
||||
|
|
|
@ -42,8 +42,8 @@
|
|||
****************************************************************************/
|
||||
|
||||
#define __io
|
||||
#include <asm/io.h>
|
||||
#include <common.h>
|
||||
#include <asm/io.h>
|
||||
#include "biosemui.h"
|
||||
|
||||
/*----------------------------- Implementation ----------------------------*/
|
||||
|
|
Loading…
Add table
Reference in a new issue