mirror of
https://github.com/mii443/qemu.git
synced 2025-12-16 17:18:49 +00:00
device_tree: Allow name wildcards in qemu_fdt_node_path()
Allow name wildcards in qemu_fdt_node_path(). This is useful to find all nodes with a given compatibility string. Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com> Message-id: 20200423121114.4274-2-edgar.iglesias@gmail.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
committed by
Peter Maydell
parent
51c510aa58
commit
80972d3bb2
@@ -308,7 +308,7 @@ char **qemu_fdt_node_path(void *fdt, const char *name, char *compat,
|
||||
offset = len;
|
||||
break;
|
||||
}
|
||||
if (!strcmp(iter_name, name)) {
|
||||
if (!name || !strcmp(iter_name, name)) {
|
||||
char *path;
|
||||
|
||||
path = g_malloc(path_len);
|
||||
|
||||
Reference in New Issue
Block a user