From e7fa24470dc3b3403eabd757a87cfb993f316b1a Mon Sep 17 00:00:00 2001 From: Elyes Haouas Date: Sat, 1 Jun 2024 18:12:16 +0200 Subject: cbmem_top: Change the return value to uintptr_t MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ib757c0548f6f643747ba8d70228b3d6dfa5182cd Signed-off-by: Elyes Haouas Reviewed-on: https://review.coreboot.org/c/coreboot/+/82752 Reviewed-by: Jérémy Compostella Reviewed-by: Jakub Czapiga Tested-by: build bot (Jenkins) --- src/soc/sifive/fu740/chip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/soc/sifive') diff --git a/src/soc/sifive/fu740/chip.c b/src/soc/sifive/fu740/chip.c index cd5052be1a..7829624484 100644 --- a/src/soc/sifive/fu740/chip.c +++ b/src/soc/sifive/fu740/chip.c @@ -8,7 +8,7 @@ static void fu740_init(struct device *dev) { int index = 0; - ram_from_to(dev, index++, FU740_DRAM, (uintptr_t)cbmem_top()); + ram_from_to(dev, index++, FU740_DRAM, cbmem_top()); } struct chip_operations soc_sifive_fu740_ops = { -- cgit v1.2.3