summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/mainboard/emulation/qemu-armv7/mainboard.c2
-rw-r--r--src/mainboard/emulation/qemu-power8/mainboard.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/emulation/qemu-armv7/mainboard.c b/src/mainboard/emulation/qemu-armv7/mainboard.c
index 4111caab0f..441086fe3d 100644
--- a/src/mainboard/emulation/qemu-armv7/mainboard.c
+++ b/src/mainboard/emulation/qemu-armv7/mainboard.c
@@ -39,7 +39,7 @@ static void mainboard_enable(struct device *dev)
discovered = probe_ramsize((uintptr_t)_dram, CONFIG_DRAM_SIZE_MB);
printk(BIOS_DEBUG, "%d MiB of RAM discovered\n", discovered);
- ram_resource_kb(dev, 0, 0x60000000 >> 10, discovered << 10);
+ ram_range(dev, 0, 0x60000000, discovered * MiB);
init_gfx();
}
diff --git a/src/mainboard/emulation/qemu-power8/mainboard.c b/src/mainboard/emulation/qemu-power8/mainboard.c
index 6f8016c8e3..f1ce497df4 100644
--- a/src/mainboard/emulation/qemu-power8/mainboard.c
+++ b/src/mainboard/emulation/qemu-power8/mainboard.c
@@ -11,7 +11,7 @@ static void mainboard_enable(struct device *dev)
}
/* Where does RAM live? */
- ram_resource_kb(dev, 0, 2048, 32768);
+ ram_range(dev, 0, 2 * MiB, 32 * MiB);
}
struct chip_operations mainboard_ops = {