aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mach-default/setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/mach-default/setup.c')
-rw-r--r--arch/x86/mach-default/setup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/mach-default/setup.c b/arch/x86/mach-default/setup.c
index 56b4c39cb7fa..7ae692a76769 100644
--- a/arch/x86/mach-default/setup.c
+++ b/arch/x86/mach-default/setup.c
@@ -184,8 +184,8 @@ char * __init machine_specific_memory_setup(void)
184 } 184 }
185 185
186 e820.nr_map = 0; 186 e820.nr_map = 0;
187 add_memory_region(0, LOWMEMSIZE(), E820_RAM); 187 e820_add_region(0, LOWMEMSIZE(), E820_RAM);
188 add_memory_region(HIGH_MEMORY, mem_size << 10, E820_RAM); 188 e820_add_region(HIGH_MEMORY, mem_size << 10, E820_RAM);
189 } 189 }
190 return who; 190 return who;
191} 191}