mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-25 21:24:21 +08:00
fdt: Update fdt_get_base_address() to use const
This function does not change the device tree so adjust it to use const for this parameter. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
38d21b418d
commit
ec002119cf
@ -1539,7 +1539,7 @@ int fdt_verify_alias_address(void *fdt, int anode, const char *alias, u64 addr)
|
||||
/*
|
||||
* Returns the base address of an SOC or PCI node
|
||||
*/
|
||||
u64 fdt_get_base_address(void *fdt, int node)
|
||||
u64 fdt_get_base_address(const void *fdt, int node)
|
||||
{
|
||||
int size;
|
||||
u32 naddr;
|
||||
|
@ -207,7 +207,7 @@ int fdt_add_edid(void *blob, const char *compat, unsigned char *buf);
|
||||
|
||||
int fdt_verify_alias_address(void *fdt, int anode, const char *alias,
|
||||
u64 addr);
|
||||
u64 fdt_get_base_address(void *fdt, int node);
|
||||
u64 fdt_get_base_address(const void *fdt, int node);
|
||||
int fdt_read_range(void *fdt, int node, int n, uint64_t *child_addr,
|
||||
uint64_t *addr, uint64_t *len);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user