aboutsummaryrefslogtreecommitdiffstats
path: root/src/pmm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pmm.c')
-rw-r--r--src/pmm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pmm.c b/src/pmm.c
index a7d0608d..b003dd17 100644
--- a/src/pmm.c
+++ b/src/pmm.c
@@ -170,15 +170,15 @@ static struct allocinfo_s *RomBase;
#define OPROM_HEADER_RESERVE 16
-// Return the memory position up to which roms may be located.
+// Return the maximum memory position option roms may use.
u32
-rom_get_top(void)
+rom_get_max(void)
{
return ALIGN_DOWN((u32)RomBase->allocend - OPROM_HEADER_RESERVE
, OPTION_ROM_ALIGN);
}
-// Return the end of the last deployed rom.
+// Return the end of the last deployed option rom.
u32
rom_get_last(void)
{
@@ -318,7 +318,7 @@ malloc_prepboot(void)
dprintf(3, "malloc finalize\n");
// Place an optionrom signature around used low mem area.
- u32 base = rom_get_top();
+ u32 base = rom_get_max();
struct rom_header *dummyrom = (void*)base;
dummyrom->signature = OPTION_ROM_SIGNATURE;
int size = (BUILD_BIOS_ADDR - base) / 512;