From 45519924a09d7818c30042b1ccd0b7526ef5e26d Mon Sep 17 00:00:00 2001 From: Bin Meng Date: Wed, 11 Apr 2018 22:02:11 -0700 Subject: 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 Reviewed-by: Christian Gmeiner --- arch/x86/cpu/tangier/sdram.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arch/x86/cpu/tangier/sdram.c') diff --git a/arch/x86/cpu/tangier/sdram.c b/arch/x86/cpu/tangier/sdram.c index daa9909e8f..f5f412a1e5 100644 --- a/arch/x86/cpu/tangier/sdram.c +++ b/arch/x86/cpu/tangier/sdram.c @@ -100,7 +100,7 @@ static struct sfi_table_simple *sfi_search_mmap(void) i++, mentry++) \ static unsigned int sfi_setup_e820(unsigned int max_entries, - struct e820entry *entries) + struct e820_entry *entries) { struct sfi_table_simple *sb; struct sfi_mem_entry *mentry; @@ -190,7 +190,7 @@ static phys_size_t sfi_get_ram_size(void) } unsigned int install_e820_map(unsigned int max_entries, - struct e820entry *entries) + struct e820_entry *entries) { return sfi_setup_e820(max_entries, entries); } -- cgit