diff options
Diffstat (limited to 'arch/x86/include/asm/global_data.h')
| -rw-r--r-- | arch/x86/include/asm/global_data.h | 21 | 
1 files changed, 0 insertions, 21 deletions
| diff --git a/arch/x86/include/asm/global_data.h b/arch/x86/include/asm/global_data.h index f177a4fa3..05a2139d0 100644 --- a/arch/x86/include/asm/global_data.h +++ b/arch/x86/include/asm/global_data.h @@ -61,25 +61,6 @@ extern gd_t *gd;  #endif -/* Word Offsets into Global Data - MUST match struct gd_t */ -#define GD_BD		0 -#define GD_FLAGS	1 -#define GD_BAUDRATE	2 -#define GD_HAVE_CONSOLE	3 -#define GD_RELOC_OFF	4 -#define GD_LOAD_OFF	5 -#define GD_ENV_ADDR	6 -#define GD_ENV_VALID	7 -#define GD_CPU_CLK	8 -#define GD_BUS_CLK	9 -#define GD_RELOC_ADDR	10 -#define GD_START_ADDR_SP	11 -#define GD_RAM_SIZE	12 -#define GD_RESET_STATUS	13 -#define GD_JT		14 - -#define GD_SIZE		15 -  /*   * Global Data Flags   */ @@ -91,8 +72,6 @@ extern gd_t *gd;  #define	GD_FLG_LOGINIT		0x00020	/* Log Buffer has been initialized	*/  #define GD_FLG_DISABLE_CONSOLE	0x00040	/* Disable console (in & out)		*/  #define GD_FLG_ENV_READY	0x00080	/* Environment imported into hash table	*/ -#define GD_FLG_COLD_BOOT	0x00100	/* Cold Boot */ -#define GD_FLG_WARM_BOOT	0x00200	/* Warm Boot */  #if 0  #define DECLARE_GLOBAL_DATA_PTR |