x86: Rename e820entry to e820_entry
authorBin Meng <bmeng.cn@gmail.com>
Thu, 12 Apr 2018 05:02:11 +0000 (22:02 -0700)
committerBin Meng <bmeng.cn@gmail.com>
Mon, 16 Apr 2018 08:54:51 +0000 (16:54 +0800)
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>
arch/x86/cpu/coreboot/sdram.c
arch/x86/cpu/qemu/e820.c
arch/x86/cpu/tangier/sdram.c
arch/x86/include/asm/bootparam.h
arch/x86/include/asm/e820.h
arch/x86/lib/coreboot_table.c
arch/x86/lib/e820.c
arch/x86/lib/fsp/fsp_dram.c
cmd/elf.c

index 05918bce07775a3c9f8e15409c07f6420fbfd822..885fc6f5f2cd8fe5be1ce99be89a70173fc311ef 100644 (file)
@@ -13,7 +13,7 @@
 DECLARE_GLOBAL_DATA_PTR;
 
 unsigned int install_e820_map(unsigned int max_entries,
-                             struct e820entry *entries)
+                             struct e820_entry *entries)
 {
        unsigned int num_entries;
        int i;
index 11409dd06d828882ca818eab6f5e9b0f8cfa6357..ec733cb03837342cc8e45df528cab166ca621034 100644 (file)
@@ -10,7 +10,7 @@
 DECLARE_GLOBAL_DATA_PTR;
 
 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;
index daa9909e8f372a8fd8d894eb01fad2be662f1d08..f5f412a1e57ca48fbe5517165ddf0ecb57f46259 100644 (file)
@@ -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);
 }
index 6aba61436123fc58774b379c30e3fd5ebab379dc..0386cbeca508f0d421e0fdef6463cf037ea88d7f 100644 (file)
@@ -111,7 +111,7 @@ struct boot_params {
        struct setup_header hdr;    /* setup header */  /* 0x1f1 */
        __u8  _pad7[0x290-0x1f1-sizeof(struct setup_header)];
        __u32 edd_mbr_sig_buffer[EDD_MBR_SIG_MAX];      /* 0x290 */
-       struct e820entry e820_map[E820MAX];             /* 0x2d0 */
+       struct e820_entry e820_map[E820MAX];            /* 0x2d0 */
        __u8  _pad8[48];                                /* 0xcd0 */
        struct edd_info eddbuf[EDDMAXNR];               /* 0xd00 */
        __u8  _pad9[276];                               /* 0xeec */
index 8355c342b6a27d44341677ad3aff8014372aeb96..9d29f82f9728e817d3a683e2d7811a8bf3ba4fb4 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef __ASSEMBLY__
 #include <linux/types.h>
 
-struct e820entry {
+struct e820_entry {
        __u64 addr;     /* start of memory segment */
        __u64 size;     /* size of memory segment */
        __u32 type;     /* type of memory segment */
@@ -25,6 +25,6 @@ struct e820entry {
 
 /* Implementation defined function to install an e820 map */
 unsigned int install_e820_map(unsigned int max_entries,
-                             struct e820entry *);
+                             struct e820_entry *);
 
 #endif /* _ASM_X86_E820_H */
index b1b4cd961312df8972f7cec528cae70283458b51..5e0edd32149903e77add2c1dc9d3eade5de45adf 100644 (file)
@@ -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;
index c2595b1e61c4472a64370949746da57911ccbc13..84c8fab189b50e139d73ca51208a9bb88d1b481c 100644 (file)
@@ -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;
index c1c6c5481a49ccbe1683c5fd207170adbba0a675..662d4ace21612e78e5ab7def9887da22f3dfea92 100644 (file)
@@ -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;
index 1017039c3e4d0bbbb34aee037b2a379f89ff7f5a..5e698676d5576a7f615077cd22f7b91f41a77e8f 100644 (file)
--- a/cmd/elf.c
+++ b/cmd/elf.c
@@ -211,7 +211,7 @@ int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 #ifdef CONFIG_X86
        ulong base;
        struct e820_info *info;
-       struct e820entry *data;
+       struct e820_entry *data;
 #endif
 
        /*
@@ -340,13 +340,13 @@ int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
         * if we don't specify it in the environment, use a default one.
         */
        base = env_get_hex("vx_phys_mem_base", VXWORKS_PHYS_MEM_BASE);
-       data = (struct e820entry *)(base + E820_DATA_OFFSET);
+       data = (struct e820_entry *)(base + E820_DATA_OFFSET);
        info = (struct e820_info *)(base + E820_INFO_OFFSET);
 
        memset(info, 0, sizeof(struct e820_info));
        info->sign = E820_SIGNATURE;
        info->entries = install_e820_map(E820MAX, data);
-       info->addr = (info->entries - 1) * sizeof(struct e820entry) +
+       info->addr = (info->entries - 1) * sizeof(struct e820_entry) +
                     E820_DATA_OFFSET;
 
        /*