aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/e820.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2017-01-28 14:24:02 +0100
committerIngo Molnar <mingo@kernel.org>2017-01-28 14:42:32 +0100
commitbe0c3f0fcade7ad67f484fa5dc00310813de6d7d (patch)
tree5bf0b5f86ec1b1723cf4d8f37d53b57606ce5b7b /arch/x86/kernel/e820.c
parentx86/boot/e820: Create coherent API function names for E820 range operations (diff)
downloadlinux-dev-be0c3f0fcade7ad67f484fa5dc00310813de6d7d.tar.xz
linux-dev-be0c3f0fcade7ad67f484fa5dc00310813de6d7d.zip
x86/boot/e820: Rename e820_print_map() to e820__print_table()
All other table-level methods are already named 'table' in some way, to change this one over to the (now consistent) nomenclature. No change in functionality. Cc: Alex Thorlton <athorlton@sgi.com> Cc: Andy Lutomirski <luto@kernel.org> Cc: Borislav Petkov <bp@alien8.de> Cc: Brian Gerst <brgerst@gmail.com> Cc: Dan Williams <dan.j.williams@intel.com> Cc: Denys Vlasenko <dvlasenk@redhat.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Huang, Ying <ying.huang@intel.com> Cc: Josh Poimboeuf <jpoimboe@redhat.com> Cc: Juergen Gross <jgross@suse.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Paul Jackson <pj@sgi.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Rafael J. Wysocki <rjw@sisk.pl> Cc: Tejun Heo <tj@kernel.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Wei Yang <richard.weiyang@gmail.com> Cc: Yinghai Lu <yinghai@kernel.org> Cc: linux-kernel@vger.kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/kernel/e820.c')
-rw-r--r--arch/x86/kernel/e820.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/x86/kernel/e820.c b/arch/x86/kernel/e820.c
index f91901ab9263..cdf224992c27 100644
--- a/arch/x86/kernel/e820.c
+++ b/arch/x86/kernel/e820.c
@@ -160,7 +160,7 @@ static void __init e820_print_type(u32 type)
}
}
-void __init e820_print_map(char *who)
+void __init e820__print_table(char *who)
{
int i;
@@ -552,7 +552,7 @@ void __init e820__update_table_print(void)
return;
pr_info("e820: modified physical RAM map:\n");
- e820_print_map("modified");
+ e820__print_table("modified");
}
static void __init e820__update_table_firmware(void)
@@ -680,7 +680,7 @@ void __init e820__memory_setup_extended(u64 phys_addr, u32 data_len)
early_memunmap(sdata, data_len);
pr_info("e820: extended physical RAM map:\n");
- e820_print_map("extended");
+ e820__print_table("extended");
}
/**
@@ -934,7 +934,7 @@ void __init e820_reserve_setup_data(void)
e820__update_table(e820_table->entries, ARRAY_SIZE(e820_table->entries), &e820_table->nr_entries);
memcpy(e820_table_firmware, e820_table, sizeof(struct e820_table));
printk(KERN_INFO "extended physical RAM map:\n");
- e820_print_map("reserve setup_data");
+ e820__print_table("reserve setup_data");
}
/*
@@ -949,7 +949,7 @@ void __init e820__finish_early_params(void)
early_panic("Invalid user supplied memory map");
pr_info("e820: user-defined physical RAM map:\n");
- e820_print_map("user");
+ e820__print_table("user");
}
}
@@ -1167,7 +1167,7 @@ void __init e820__memory_setup(void)
memcpy(e820_table_firmware, e820_table, sizeof(struct e820_table));
pr_info("e820: BIOS-provided physical RAM map:\n");
- e820_print_map(who);
+ e820__print_table(who);
}
void __init e820__memblock_setup(void)