summaryrefslogtreecommitdiff
path: root/src/mainboard/emulation/qemu-power9
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2023-07-05 11:44:45 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2023-07-12 09:33:53 +0000
commit6df8ba45e04724cd8cbcb556df43a61ad271ab6f (patch)
tree3781e169b8b53bd1fd84b3ae21d623475ff89d22 /src/mainboard/emulation/qemu-power9
parent0a60d1095436d4b53e660d9ea0ded48b699887d1 (diff)
mb/emulation/*: Use newer function for resource declarations
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Change-Id: Idd623e99ee20ad94e493c8560cfdac9f7baaf890 Reviewed-on: https://review.coreboot.org/c/coreboot/+/76281 Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/emulation/qemu-power9')
-rw-r--r--src/mainboard/emulation/qemu-power9/mainboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/emulation/qemu-power9/mainboard.c b/src/mainboard/emulation/qemu-power9/mainboard.c
index 542339da0a..5af49247e0 100644
--- a/src/mainboard/emulation/qemu-power9/mainboard.c
+++ b/src/mainboard/emulation/qemu-power9/mainboard.c
@@ -8,7 +8,7 @@ static void mainboard_enable(struct device *dev)
{
if (!dev)
die("No dev0; die\n");
- ram_resource_kb(dev, 0, 0, (unsigned long)cbmem_top() / KiB);
+ ram_range(dev, 0, 0, (unsigned long)cbmem_top());
}
struct chip_operations mainboard_ops = {