Skip to content
Snippets Groups Projects
Commit 6cb49c13 authored by Simon Glass's avatar Simon Glass Committed by Tom Rini
Browse files

x86: Remove reset_status, relocoff from global_data


These fields are not used on x86, so punt them.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 5a35e6c4
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,6 @@ struct global_data { ...@@ -53,7 +53,6 @@ struct global_data {
unsigned long precon_buf_idx; /* Pre-Console buffer index */ unsigned long precon_buf_idx; /* Pre-Console buffer index */
#endif #endif
unsigned long reloc_off; /* Relocation Offset */ unsigned long reloc_off; /* Relocation Offset */
unsigned long load_off; /* Load Offset */
unsigned long env_addr; /* Address of Environment struct */ unsigned long env_addr; /* Address of Environment struct */
unsigned long env_valid; /* Checksum of Environment valid? */ unsigned long env_valid; /* Checksum of Environment valid? */
unsigned long cpu_clk; /* CPU clock in Hz! */ unsigned long cpu_clk; /* CPU clock in Hz! */
...@@ -61,7 +60,6 @@ struct global_data { ...@@ -61,7 +60,6 @@ struct global_data {
unsigned long relocaddr; /* Start address of U-Boot in RAM */ unsigned long relocaddr; /* Start address of U-Boot in RAM */
unsigned long start_addr_sp; /* start_addr_stackpointer */ unsigned long start_addr_sp; /* start_addr_stackpointer */
phys_size_t ram_size; /* RAM size */ phys_size_t ram_size; /* RAM size */
unsigned long reset_status; /* reset status register at boot */
const void *fdt_blob; /* Our device tree, NULL if none */ const void *fdt_blob; /* Our device tree, NULL if none */
void **jt; /* jump table */ void **jt; /* jump table */
char env_buf[32]; /* buffer for getenv() before reloc. */ char env_buf[32]; /* buffer for getenv() before reloc. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment