diff options
Diffstat (limited to 'arch/avr32/include/asm/global_data.h')
| -rw-r--r-- | arch/avr32/include/asm/global_data.h | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/arch/avr32/include/asm/global_data.h b/arch/avr32/include/asm/global_data.h index bf661e23b..236a9da54 100644 --- a/arch/avr32/include/asm/global_data.h +++ b/arch/avr32/include/asm/global_data.h @@ -22,6 +22,10 @@  #ifndef __ASM_GLOBAL_DATA_H__  #define __ASM_GLOBAL_DATA_H__ +/* Architecture-specific global data */ +struct arch_global_data { +}; +  /*   * The following data structure is placed in some memory wich is   * available very early after boot (like DPRAM on MPC8xx/MPC82xx, or @@ -48,6 +52,7 @@ typedef	struct	global_data {  #endif  	void		**jt;		/* jump table */  	char		env_buf[32];	/* buffer for getenv() before reloc. */ +	struct arch_global_data arch;	/* architecture-specific data */  } gd_t;  #include <asm-generic/global_data_flags.h> |