diff options
author | Yinghai Lu <yhlu.kernel@gmail.com> | 2008-06-16 01:58:51 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-08 08:37:01 (GMT) |
commit | d0be6bdea103b8d04c8a3495538b7c0011ae4129 (patch) | |
tree | b2f40f629457feda4e20eb145ed6e4b676f6effd /arch/x86/kernel/cpu/mtrr/main.c | |
parent | 6df8809bbd1b48cc6d428df7372ed749c8711641 (diff) | |
download | linux-fsl-qoriq-d0be6bdea103b8d04c8a3495538b7c0011ae4129.tar.xz |
x86: rename two e820 related functions
rename update_memory_range to e820_update_range
rename add_memory_region to e820_add_region
to make it more clear that they are about e820 map operations.
Signed-off-by: Yinghai Lu <yhlu.kernel@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/cpu/mtrr/main.c')
-rw-r--r-- | arch/x86/kernel/cpu/mtrr/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/mtrr/main.c b/arch/x86/kernel/cpu/mtrr/main.c index 0642201..105afe1 100644 --- a/arch/x86/kernel/cpu/mtrr/main.c +++ b/arch/x86/kernel/cpu/mtrr/main.c @@ -1440,7 +1440,7 @@ static u64 __init real_trim_memory(unsigned long start_pfn, trim_size <<= PAGE_SHIFT; trim_size -= trim_start; - return update_memory_range(trim_start, trim_size, E820_RAM, + return e820_update_range(trim_start, trim_size, E820_RAM, E820_RESERVED); } /** |