summaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/global_data.h
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2019-08-16 14:45:28 +0200
committerBin Meng <bmeng.cn@gmail.com>2019-08-18 21:54:10 +0800
commit8ad01ce36f71113d9b4c58fb71422d47e86df176 (patch)
treed49fbcdf8373291655aea1e3014852390a4ebae3 /arch/x86/include/asm/global_data.h
parentad79d603aa68a7a523005ce694ee4b43efdf7382 (diff)
downloadu-boot-8ad01ce36f71113d9b4c58fb71422d47e86df176.tar.gz
u-boot-8ad01ce36f71113d9b4c58fb71422d47e86df176.tar.xz
u-boot-8ad01ce36f71113d9b4c58fb71422d47e86df176.zip
x86: Remove x86 specific GD flags as they are not referenced at all
This patch removes the x86 architecture specific GD flags (GD_FLG_COLD_BOOT & GD_FLG_WARM_BOOT), as they are not used. Only GD_FLG_COLD_BOOT is referenced in coreboot.c but assigned in start16.S. But the coreboot target does not use start16.S at all and boots directly from the 32-bit start code. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Bin Meng <bmeng.cn@gmail.com> Cc: Simon Glass <sjg@chromium.org> Cc: Tom Rini <trini@konsulko.com> Cc: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Diffstat (limited to 'arch/x86/include/asm/global_data.h')
-rw-r--r--arch/x86/include/asm/global_data.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/arch/x86/include/asm/global_data.h b/arch/x86/include/asm/global_data.h
index 797397e697..17a4d34491 100644
--- a/arch/x86/include/asm/global_data.h
+++ b/arch/x86/include/asm/global_data.h
@@ -137,10 +137,4 @@ static inline __attribute__((no_instrument_function)) gd_t *get_fs_gd_ptr(void)
#endif
-/*
- * Our private Global Data Flags
- */
-#define GD_FLG_COLD_BOOT 0x10000 /* Cold Boot */
-#define GD_FLG_WARM_BOOT 0x20000 /* Warm Boot */
-
#endif /* __ASM_GBL_DATA_H */