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>
master
Simon Glass 10 years ago
parent 0a54745fc2
commit f46f3f356f
  1. 2
      drivers/bios_emulator/besys.c
  2. 2
      drivers/bios_emulator/bios.c

@ -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…
Cancel
Save