diff options
| -rw-r--r-- | arch/x86/include/asm/global_data.h | 2 | ||||
| -rw-r--r-- | arch/x86/include/asm/u-boot.h | 3 | 
2 files changed, 5 insertions, 0 deletions
| diff --git a/arch/x86/include/asm/global_data.h b/arch/x86/include/asm/global_data.h index 59c2a9095..b8961baae 100644 --- a/arch/x86/include/asm/global_data.h +++ b/arch/x86/include/asm/global_data.h @@ -33,6 +33,8 @@  #ifndef __ASSEMBLY__ +#include <asm/u-boot.h> +  typedef struct global_data gd_t;  struct global_data { diff --git a/arch/x86/include/asm/u-boot.h b/arch/x86/include/asm/u-boot.h index da667c50a..2f45c7b3d 100644 --- a/arch/x86/include/asm/u-boot.h +++ b/arch/x86/include/asm/u-boot.h @@ -36,6 +36,9 @@  #ifndef _U_BOOT_H_  #define _U_BOOT_H_	1 +#include <config.h> +#include <compiler.h> +  typedef struct bd_info {  	unsigned long	bi_memstart;	/* start of DRAM memory */  	phys_size_t	bi_memsize;	/* size	 of DRAM memory in bytes */ |