diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2023-08-12 20:16:58 +0200 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2023-08-15 18:21:17 +0200 |
commit | d768dd88552df18d4a0527cf3d6ddd05dc072f02 (patch) | |
tree | e14fc2d32dde3e84146d80cd82751cf522b47f3e /board/toradex | |
parent | b571b3acdaa43b90de3bc7540f13c02b1ee86b8e (diff) | |
download | u-boot-d768dd88552df18d4a0527cf3d6ddd05dc072f02.zip u-boot-d768dd88552df18d4a0527cf3d6ddd05dc072f02.tar.gz u-boot-d768dd88552df18d4a0527cf3d6ddd05dc072f02.tar.bz2 |
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 'board/toradex')
-rw-r--r-- | board/toradex/verdin-am62/verdin-am62.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/toradex/verdin-am62/verdin-am62.c b/board/toradex/verdin-am62/verdin-am62.c index 5b166b1..a3d1d07 100644 --- a/board/toradex/verdin-am62/verdin-am62.c +++ b/board/toradex/verdin-am62/verdin-am62.c @@ -37,7 +37,7 @@ int dram_init(void) /* * Avoid relocated U-Boot clash with Linux reserved-memory on 512 MB SoM */ -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) { return 0x9C000000; } |