From patchwork Fri Dec 14 06:48:40 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [U-Boot,v2,11/58] x86: Remove gdt_addr from arch_global_data Date: Thu, 13 Dec 2012 20:48:40 -0000 From: Simon Glass X-Patchwork-Id: 206302 Message-Id: <1355467767-29575-12-git-send-email-sjg@chromium.org> To: U-Boot Mailing List Cc: Tom Rini Remove this unused field. Signed-off-by: Simon Glass --- Changes in v2: - Remove gdt_addr which is no longer used on x86 arch/x86/include/asm/global_data.h | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/arch/x86/include/asm/global_data.h b/arch/x86/include/asm/global_data.h index 39c1acf..9a4f141 100644 --- a/arch/x86/include/asm/global_data.h +++ b/arch/x86/include/asm/global_data.h @@ -61,7 +61,6 @@ struct global_data { unsigned long bus_clk; unsigned long relocaddr; /* Start address of U-Boot in RAM */ unsigned long start_addr_sp; /* start_addr_stackpointer */ - unsigned long gdt_addr; /* Location of GDT */ 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 */