diff options
author | Tejun Heo <tj@kernel.org> | 2011-05-02 17:24:48 +0200 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2011-05-02 17:24:48 +0200 |
commit | 752d4f372f90a2f6eb562aaffb639957890cbcab (patch) | |
tree | b2efc31cea03d00f806e5eed37ffd7fb17db0ee7 /arch/x86/mm/numa.c | |
parent | bd6709a91a593d8fe35d08da542e9f93bb74a304 (diff) | |
download | linux-752d4f372f90a2f6eb562aaffb639957890cbcab.tar.bz2 |
x86, NUMA: Make numa_init_array() static
numa_init_array() no longer has users outside of numa.c. Make it
static.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Yinghai Lu <yinghai@kernel.org>
Cc: David Rientjes <rientjes@google.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Diffstat (limited to 'arch/x86/mm/numa.c')
-rw-r--r-- | arch/x86/mm/numa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/numa.c b/arch/x86/mm/numa.c index 56ed714ed24f..ecb5685d7d20 100644 --- a/arch/x86/mm/numa.c +++ b/arch/x86/mm/numa.c @@ -535,7 +535,7 @@ static int __init numa_register_memblks(struct numa_meminfo *mi) * as the number of CPUs is not known yet. We round robin the existing * nodes. */ -void __init numa_init_array(void) +static void __init numa_init_array(void) { int rr, i; |