mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
common: fdt: Make fdt_del_subnodes/fdt_del_partition static
These functions are only called in this file that's why make them static to keep static analysers happy. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
642a860412
commit
cd1457d74e
1 changed files with 2 additions and 2 deletions
|
@ -725,7 +725,7 @@ struct reg_cell {
|
|||
unsigned int r1;
|
||||
};
|
||||
|
||||
int fdt_del_subnodes(const void *blob, int parent_offset)
|
||||
static int fdt_del_subnodes(const void *blob, int parent_offset)
|
||||
{
|
||||
int off, ndepth;
|
||||
int ret;
|
||||
|
@ -750,7 +750,7 @@ int fdt_del_subnodes(const void *blob, int parent_offset)
|
|||
return 0;
|
||||
}
|
||||
|
||||
int fdt_del_partitions(void *blob, int parent_offset)
|
||||
static int fdt_del_partitions(void *blob, int parent_offset)
|
||||
{
|
||||
const void *prop;
|
||||
int ndepth = 0;
|
||||
|
|
Loading…
Reference in a new issue