Skip to content
Snippets Groups Projects
Commit c953fbee authored by Gabe Black's avatar Gabe Black Committed by Simon Glass
Browse files

x86: Add some missing includes


I suspect these includes were usually available because something else
included them earlier or because they were brought in transitively.

Change-Id: I6aae2ac94dc792eac6febb4345e8125f69f70988
Signed-off-by: default avatarGabe Black <gabeblack@chromium.org>
Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent b16f521a
No related branches found
No related tags found
No related merge requests found
...@@ -33,6 +33,8 @@ ...@@ -33,6 +33,8 @@
#ifndef __ASSEMBLY__ #ifndef __ASSEMBLY__
#include <asm/u-boot.h>
typedef struct global_data gd_t; typedef struct global_data gd_t;
struct global_data { struct global_data {
......
...@@ -36,6 +36,9 @@ ...@@ -36,6 +36,9 @@
#ifndef _U_BOOT_H_ #ifndef _U_BOOT_H_
#define _U_BOOT_H_ 1 #define _U_BOOT_H_ 1
#include <config.h>
#include <compiler.h>
typedef struct bd_info { typedef struct bd_info {
unsigned long bi_memstart; /* start of DRAM memory */ unsigned long bi_memstart; /* start of DRAM memory */
phys_size_t bi_memsize; /* size of DRAM memory in bytes */ phys_size_t bi_memsize; /* size of DRAM memory in bytes */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment