Re: [Qemu-devel] [PATCH v5 3/8] device_tree: introduce qemu_fdt_node_path

2016-01-25 Thread Eric Auger
Peter, On 01/25/2016 03:26 PM, Peter Maydell wrote: > On 18 January 2016 at 15:16, Eric Auger wrote: >> This new helper routine returns a NULL terminated array of >> node paths matching a node name and a compat string. >> >> Signed-off-by: Eric Auger >> >> --- >> >> v4 -> v5: >> - support the cas

Re: [Qemu-devel] [PATCH v5 3/8] device_tree: introduce qemu_fdt_node_path

2016-01-25 Thread Peter Maydell
On 18 January 2016 at 15:16, Eric Auger wrote: > This new helper routine returns a NULL terminated array of > node paths matching a node name and a compat string. > > Signed-off-by: Eric Auger > > --- > > v4 -> v5: > - support the case where several nodes exist, ie. > return an array of node pa

[Qemu-devel] [PATCH v5 3/8] device_tree: introduce qemu_fdt_node_path

2016-01-18 Thread Eric Auger
This new helper routine returns a NULL terminated array of node paths matching a node name and a compat string. Signed-off-by: Eric Auger --- v4 -> v5: - support the case where several nodes exist, ie. return an array of node paths. Also add Error ** parameter v1 -> v2: - move doc comment