aboutsummaryrefslogtreecommitdiffstats
path: root/arch/ia64/mm/contig.c
diff options
context:
space:
mode:
authorTony Luck <tony.luck@intel.com>2006-12-12 11:18:55 -0800
committerTony Luck <tony.luck@intel.com>2006-12-12 11:18:55 -0800
commit8b9c106856d92c8266697328b148d115538b59ce (patch)
treea8c68bb48290d97ae942ca63efeb94856fb892ae /arch/ia64/mm/contig.c
parentf889a26a703b03c774849685583cec7746738f3c (diff)
downloadkernel_samsung_smdk4412-8b9c106856d92c8266697328b148d115538b59ce.zip
kernel_samsung_smdk4412-8b9c106856d92c8266697328b148d115538b59ce.tar.gz
kernel_samsung_smdk4412-8b9c106856d92c8266697328b148d115538b59ce.tar.bz2
[IA64] fix arch/ia64/mm/contig.c:235: warning: unused variable `nid'
This warning only shows up with CONFIG_VIRTUAL_MEM_MAP=y and CONFIG_FLATMEM=y. There is only one caller left for register_active_ranges() from the contig.c code ... so it doesn't need to pick up the node number, the node number is always zero. Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64/mm/contig.c')
-rw-r--r--arch/ia64/mm/contig.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/ia64/mm/contig.c b/arch/ia64/mm/contig.c
index fd10388..1e79551 100644
--- a/arch/ia64/mm/contig.c
+++ b/arch/ia64/mm/contig.c
@@ -232,7 +232,6 @@ void __init
paging_init (void)
{
unsigned long max_dma;
- unsigned long nid = 0;
unsigned long max_zone_pfns[MAX_NR_ZONES];
num_physpages = 0;
@@ -244,7 +243,7 @@ paging_init (void)
max_zone_pfns[ZONE_NORMAL] = max_low_pfn;
#ifdef CONFIG_VIRTUAL_MEM_MAP
- efi_memmap_walk(register_active_ranges, &nid);
+ efi_memmap_walk(register_active_ranges, NULL);
efi_memmap_walk(find_largest_hole, (u64 *)&max_gap);
if (max_gap < LARGE_GAP) {
vmem_map = (struct page *) 0;