summaryrefslogtreecommitdiff
path: root/arch/arm/mach-sunxi
diff options
context:
space:
mode:
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2023-08-12 20:16:58 +0200
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2023-08-15 18:21:17 +0200
commitd768dd88552df18d4a0527cf3d6ddd05dc072f02 (patch)
treee14fc2d32dde3e84146d80cd82751cf522b47f3e /arch/arm/mach-sunxi
parentb571b3acdaa43b90de3bc7540f13c02b1ee86b8e (diff)
downloadu-boot-d768dd88552df18d4a0527cf3d6ddd05dc072f02.tar.gz
u-boot-d768dd88552df18d4a0527cf3d6ddd05dc072f02.tar.bz2
u-boot-d768dd88552df18d4a0527cf3d6ddd05dc072f02.zip
common: return type board_get_usable_ram_top
board_get_usable_ram_top() returns a physical address that is stored in gd->ram_top. The return type of the function should be phys_addr_t like the current type of gd->ram_top. Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'arch/arm/mach-sunxi')
-rw-r--r--arch/arm/mach-sunxi/board.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-sunxi/board.c b/arch/arm/mach-sunxi/board.c
index 391a65a549..78597ad932 100644
--- a/arch/arm/mach-sunxi/board.c
+++ b/arch/arm/mach-sunxi/board.c
@@ -64,7 +64,7 @@ static struct mm_region sunxi_mem_map[] = {
};
struct mm_region *mem_map = sunxi_mem_map;
-phys_size_t board_get_usable_ram_top(phys_size_t total_size)
+phys_addr_t board_get_usable_ram_top(phys_size_t total_size)
{
/* Some devices (like the EMAC) have a 32-bit DMA limit. */
if (gd->ram_top > (1ULL << 32))