diff options
author | Tejun Heo <tj@kernel.org> | 2011-05-02 11:24:48 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2011-05-02 11:24:48 -0400 |
commit | 752d4f372f90a2f6eb562aaffb639957890cbcab (patch) | |
tree | b2efc31cea03d00f806e5eed37ffd7fb17db0ee7 /arch/x86/mm | |
parent | bd6709a91a593d8fe35d08da542e9f93bb74a304 (diff) |
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')
-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 56ed714ed24..ecb5685d7d2 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) | |||
535 | * as the number of CPUs is not known yet. We round robin the existing | 535 | * as the number of CPUs is not known yet. We round robin the existing |
536 | * nodes. | 536 | * nodes. |
537 | */ | 537 | */ |
538 | void __init numa_init_array(void) | 538 | static void __init numa_init_array(void) |
539 | { | 539 | { |
540 | int rr, i; | 540 | int rr, i; |
541 | 541 | ||