diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-03-21 16:27:10 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:41:30 -0400 |
commit | 67794292c8615b05f46419ba8d4fd99e7c9a5db9 (patch) | |
tree | 8aacc17810552a9ecffa86b4a5f2cd8ec9a8f57f /arch/x86/mm/init_64.c | |
parent | 7d1116a92d709c22e7db910724c9fcd2001b0499 (diff) |
x86: replace the now useless max_pfn_mapped define
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mm/init_64.c')
-rw-r--r-- | arch/x86/mm/init_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/init_64.c b/arch/x86/mm/init_64.c index 210243e94d84..ef9e9cfb1fc2 100644 --- a/arch/x86/mm/init_64.c +++ b/arch/x86/mm/init_64.c | |||
@@ -791,7 +791,7 @@ void __init reserve_bootmem_generic(unsigned long phys, unsigned len) | |||
791 | * This can happen with kdump kernels when accessing | 791 | * This can happen with kdump kernels when accessing |
792 | * firmware tables: | 792 | * firmware tables: |
793 | */ | 793 | */ |
794 | if (pfn < end_pfn_map) | 794 | if (pfn < max_pfn_mapped) |
795 | return; | 795 | return; |
796 | 796 | ||
797 | printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n", | 797 | printk(KERN_ERR "reserve_bootmem: illegal reserve %lx %u\n", |