mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
board_f: Fix types for board_get_usable_ram_top()
Commit37dc958947
("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:37dc958947
("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>
This commit is contained in:
parent
777aaaa706
commit
049704f808
35 changed files with 36 additions and 36 deletions
|
@ -291,7 +291,7 @@ int show_board_info(void);
|
|||
*
|
||||
* @param total_size Size of U-Boot (unused?)
|
||||
*/
|
||||
ulong board_get_usable_ram_top(ulong total_size);
|
||||
phys_size_t board_get_usable_ram_top(phys_size_t total_size);
|
||||
|
||||
int board_early_init_f(void);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue