mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
core: fdtaddr: use map_sysmem() as cast for the return (part 2)
For the devfdt_get_addr_size_index_ptr() function use map_sysmem() function as cast for the return for use in sandbox. Signed-off-by: Johan Jonker <jbx6244@gmail.com>
This commit is contained in:
parent
cd88058da3
commit
58f4bb833b
1 changed files with 4 additions and 1 deletions
|
@ -131,7 +131,10 @@ void *devfdt_get_addr_size_index_ptr(const struct udevice *dev, int index,
|
|||
{
|
||||
fdt_addr_t addr = devfdt_get_addr_size_index(dev, index, size);
|
||||
|
||||
return (addr == FDT_ADDR_T_NONE) ? NULL : (void *)(uintptr_t)addr;
|
||||
if (addr == FDT_ADDR_T_NONE)
|
||||
return NULL;
|
||||
|
||||
return map_sysmem(addr, 0);
|
||||
}
|
||||
|
||||
fdt_addr_t devfdt_get_addr_name(const struct udevice *dev, const char *name)
|
||||
|
|
Loading…
Reference in a new issue