summaryrefslogtreecommitdiff
path: root/arch/x86/lib/e820.c
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2018-04-12 08:02:11 +0300
committerBin Meng <bmeng.cn@gmail.com>2018-04-16 11:54:51 +0300
commit45519924a09d7818c30042b1ccd0b7526ef5e26d (patch)
treeadc113e61b34538c45be49c0ca2812d104a2774d /arch/x86/lib/e820.c
parent87af71c2eae53e347194cc6526ffc3f516a7c98e (diff)
downloadu-boot-45519924a09d7818c30042b1ccd0b7526ef5e26d.tar.xz
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/e820.c')
-rw-r--r--arch/x86/lib/e820.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/lib/e820.c b/arch/x86/lib/e820.c
index c2595b1e61..84c8fab189 100644
--- a/arch/x86/lib/e820.c
+++ b/arch/x86/lib/e820.c
@@ -18,7 +18,7 @@ DECLARE_GLOBAL_DATA_PTR;
* CONFIG_PCIE_ECAM_BASE PCIe ECAM
*/
__weak unsigned int install_e820_map(unsigned int max_entries,
- struct e820entry *entries)
+ struct e820_entry *entries)
{
entries[0].addr = 0;
entries[0].size = ISA_START_ADDRESS;