diff options
author | Pali Rohár <pali@kernel.org> | 2022-09-09 17:32:40 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-09-23 15:12:42 -0400 |
commit | 049704f808d5e643668a33a76e55f925d4c1b36a (patch) | |
tree | 8c0b37e909cd7d94bb0f9e0b6d6588cc63652948 /board/broadcom | |
parent | 777aaaa706bcfe08c284aed06886db7d482af3f8 (diff) | |
download | u-boot-049704f808d5e643668a33a76e55f925d4c1b36a.tar.gz u-boot-049704f808d5e643668a33a76e55f925d4c1b36a.tar.bz2 u-boot-049704f808d5e643668a33a76e55f925d4c1b36a.zip |
board_f: Fix types for board_get_usable_ram_top()
Commit 37dc958947ed ("global_data.h: Change ram_top type to phys_addr_t")
changed type of ram_top member from ulong to phys_addr_t but did not
changed types in board_get_usable_ram_top() function which returns value
for ram_top.
So change ulong to phys_addr_t type also in board_get_usable_ram_top()
signature and implementations.
Fixes: 37dc958947ed ("global_data.h: Change ram_top type to phys_addr_t")
Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/broadcom')
-rw-r--r-- | board/broadcom/bcmns3/ns3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/broadcom/bcmns3/ns3.c b/board/broadcom/bcmns3/ns3.c index 88036c16c9..26652e8f77 100644 --- a/board/broadcom/bcmns3/ns3.c +++ b/board/broadcom/bcmns3/ns3.c @@ -183,7 +183,7 @@ int dram_init_banksize(void) } /* Limit RAM used by U-Boot to the DDR first bank End region */ -ulong board_get_usable_ram_top(ulong total_size) +phys_size_t board_get_usable_ram_top(phys_size_t total_size) { return BCM_NS3_MEM_END; } |