aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/lib/coreboot_table.c
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2018-04-11 22:02:11 -0700
committerBin Meng <bmeng.cn@gmail.com>2018-04-16 16:54:51 +0800
commit45519924a09d7818c30042b1ccd0b7526ef5e26d (patch)
treeadc113e61b34538c45be49c0ca2812d104a2774d /arch/x86/lib/coreboot_table.c
parent87af71c2eae53e347194cc6526ffc3f516a7c98e (diff)
downloadu-boot-45519924a09d7818c30042b1ccd0b7526ef5e26d.zip
u-boot-45519924a09d7818c30042b1ccd0b7526ef5e26d.tar.gz
u-boot-45519924a09d7818c30042b1ccd0b7526ef5e26d.tar.bz2
x86: Rename e820entry to e820_entry
This changes 'struct e820entry' to 'struct e820_entry' to conform with the coding style. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Diffstat (limited to 'arch/x86/lib/coreboot_table.c')
-rw-r--r--arch/x86/lib/coreboot_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/coreboot_table.c b/arch/x86/lib/coreboot_table.c
index b1b4cd9..5e0edd3 100644
--- a/arch/x86/lib/coreboot_table.c
+++ b/arch/x86/lib/coreboot_table.c
@@ -100,7 +100,7 @@ void write_coreboot_table(u32 addr, struct memory_area *cfg_tables)
struct cb_record *cbr;
struct cb_memory *mem;
struct cb_memory_range *map;
- struct e820entry e820[32];
+ struct e820_entry e820[32];
struct cb_framebuffer *fb;
struct vesa_mode_info *vesa;
int i, num;