diff options
Diffstat (limited to 'include/asm-generic/global_data.h')
| -rw-r--r-- | include/asm-generic/global_data.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/include/asm-generic/global_data.h b/include/asm-generic/global_data.h index 5416f468b..8cfc3fa77 100644 --- a/include/asm-generic/global_data.h +++ b/include/asm-generic/global_data.h @@ -68,9 +68,6 @@ typedef struct global_data {  	unsigned long env_addr;	/* Address  of Environment struct */  	unsigned long env_valid;	/* Checksum of Environment valid? */ -	/* TODO: is this the same as relocaddr, or something else? */ -	unsigned long dest_addr;	/* Post-relocation address of U-Boot */ -	unsigned long dest_addr_sp;  	unsigned long ram_top;	/* Top address of RAM used by U-Boot */  	unsigned long relocaddr;	/* Start address of U-Boot in RAM */ @@ -85,6 +82,9 @@ typedef struct global_data {  	unsigned long fdt_size;	/* Space reserved for relocated FDT */  	void **jt;		/* jump table */  	char env_buf[32];	/* buffer for getenv() before reloc. */ +#ifdef CONFIG_TRACE +	void		*trace_buff;	/* The trace buffer */ +#endif  	struct arch_global_data arch;	/* architecture-specific data */  } gd_t;  #endif |