Re: [RFC PATCH v2 1/6] device_tree: Add qemu_fdt_add_path

2021-04-19 Thread wangyanan (Y)
Hi David, On 2021/4/19 9:13, David Gibson wrote: On Sat, Apr 17, 2021 at 10:36:20AM +0800, wangyanan (Y) wrote: Hi David, On 2021/4/16 12:52, David Gibson wrote: On Tue, Apr 13, 2021 at 04:07:40PM +0800, Yanan Wang wrote: From: Andrew Jones qemu_fdt_add_path() works like

Re: [RFC PATCH v2 1/6] device_tree: Add qemu_fdt_add_path

2021-04-18 Thread David Gibson
On Sat, Apr 17, 2021 at 10:36:20AM +0800, wangyanan (Y) wrote: > Hi David, > > On 2021/4/16 12:52, David Gibson wrote: > > On Tue, Apr 13, 2021 at 04:07:40PM +0800, Yanan Wang wrote: > > > From: Andrew Jones > > > > > > qemu_fdt_add_path() works like qemu_fdt_add_subnode(), except > > > it also

Re: [RFC PATCH v2 1/6] device_tree: Add qemu_fdt_add_path

2021-04-16 Thread wangyanan (Y)
Hi David, On 2021/4/16 12:52, David Gibson wrote: On Tue, Apr 13, 2021 at 04:07:40PM +0800, Yanan Wang wrote: From: Andrew Jones qemu_fdt_add_path() works like qemu_fdt_add_subnode(), except it also adds any missing subnodes in the path. We also tweak an error message of

Re: [RFC PATCH v2 1/6] device_tree: Add qemu_fdt_add_path

2021-04-15 Thread David Gibson
On Tue, Apr 13, 2021 at 04:07:40PM +0800, Yanan Wang wrote: > From: Andrew Jones > > qemu_fdt_add_path() works like qemu_fdt_add_subnode(), except > it also adds any missing subnodes in the path. We also tweak > an error message of qemu_fdt_add_subnode(). > > We'll make use of this new function

[RFC PATCH v2 1/6] device_tree: Add qemu_fdt_add_path

2021-04-13 Thread Yanan Wang
From: Andrew Jones qemu_fdt_add_path() works like qemu_fdt_add_subnode(), except it also adds any missing subnodes in the path. We also tweak an error message of qemu_fdt_add_subnode(). We'll make use of this new function in a coming patch. Signed-off-by: Andrew Jones Signed-off-by: Yanan