diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-09-27 17:40:42 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2009-09-28 18:06:20 +0100 |
commit | 041d785f807c8e92e11cc1bd2b3438f7823e63d2 (patch) | |
tree | 91364697e90a0a6af75c3313bf703e79f62f87c9 /arch/arm | |
parent | d80ade7b323152672bf66e74ec11c324332f6d1e (diff) |
ARM: Fix warning: unused variable 'highmem'
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mm/mmu.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c index 4426ee67cec..ce551ec2cb2 100644 --- a/arch/arm/mm/mmu.c +++ b/arch/arm/mm/mmu.c @@ -726,6 +726,8 @@ static void __init sanity_check_meminfo(void) bank->size = VMALLOC_MIN - __va(bank->start); } #else + bank->highmem = highmem; + /* * Check whether this memory bank would entirely overlap * the vmalloc area. |