include/device_tree.h: Fix function name fdt_node_name

Rename fdt_node_name to the actual function name and also rename the
references.

Signed-off-by: Maximilian Brune <maximilian.brune@9elements.com>
Change-Id: I527146df26264a0c3af1ad01c21644d751b80236
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83084
Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Eric Lai <ericllai@google.com>
This commit is contained in:
Maximilian Brune
2024-06-14 17:54:40 +02:00
committed by Felix Held
parent 4bdb089147
commit 9a12acf1e3
2 changed files with 6 additions and 8 deletions

View File

@@ -103,8 +103,11 @@ bool fdt_is_valid(const void *blob);
/* Read the property at offset, if any exists. */ /* Read the property at offset, if any exists. */
int fdt_next_property(const void *blob, uint32_t offset, int fdt_next_property(const void *blob, uint32_t offset,
struct fdt_property *prop); struct fdt_property *prop);
/* Read the name of the node at offset, if any exists. */ /*
int fdt_node_name(const void *blob, uint32_t offset, const char **name); * Read the node name into 'name' of the node behind 'node_offset'
* and return total bytes used for name
*/
int fdt_next_node_name(const void *blob, uint32_t node_offset, const char **name);
void fdt_print_node(const void *blob, uint32_t offset); void fdt_print_node(const void *blob, uint32_t offset);
int fdt_skip_node(const void *blob, uint32_t offset); int fdt_skip_node(const void *blob, uint32_t offset);
@@ -123,11 +126,6 @@ size_t fdt_find_subnodes_by_prefix(const void *blob, u32 node_offset, const char
/* Find a node by a given alias and return its offset */ /* Find a node by a given alias and return its offset */
u32 fdt_find_node_by_alias(const void *blob, const char *alias_name, u32 fdt_find_node_by_alias(const void *blob, const char *alias_name,
u32 *addr_cells, u32 *size_cells); u32 *addr_cells, u32 *size_cells);
/*
* Read the node name into 'name' of the node behind 'node_offset'
* and return total bytes used for name
*/
int fdt_next_node_name(const void *blob, uint32_t node_offset, const char **name);
/* Read memory regions from a flat device-tree. */ /* Read memory regions from a flat device-tree. */
size_t fdt_read_memory_regions(const void *blob, struct device_tree_region regions[], size_t fdt_read_memory_regions(const void *blob, struct device_tree_region regions[],

View File

@@ -178,7 +178,7 @@ static int fdt_find_compat(const void *blob, uint32_t start_offset,
int offset = start_offset; int offset = start_offset;
int size; int size;
size = fdt_node_name(blob, offset, NULL); size = fdt_next_node_name(blob, offset, NULL);
if (!size) if (!size)
return -1; return -1;
offset += size; offset += size;