diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2018-04-11 22:02:11 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2018-04-16 16:54:51 +0800 |
commit | 45519924a09d7818c30042b1ccd0b7526ef5e26d (patch) | |
tree | adc113e61b34538c45be49c0ca2812d104a2774d /arch/x86/lib/fsp | |
parent | 87af71c2eae53e347194cc6526ffc3f516a7c98e (diff) | |
download | u-boot-45519924a09d7818c30042b1ccd0b7526ef5e26d.tar.gz |
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/fsp')
-rw-r--r-- | arch/x86/lib/fsp/fsp_dram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/fsp/fsp_dram.c b/arch/x86/lib/fsp/fsp_dram.c index c1c6c5481a..662d4ace21 100644 --- a/arch/x86/lib/fsp/fsp_dram.c +++ b/arch/x86/lib/fsp/fsp_dram.c @@ -63,7 +63,7 @@ ulong board_get_usable_ram_top(ulong total_size) } unsigned int install_e820_map(unsigned int max_entries, - struct e820entry *entries) + struct e820_entry *entries) { unsigned int num_entries = 0; const struct hob_header *hdr; |