Re: [U-Boot] [PATCH v3 01/14] Introduce fdt_setprop_placeholder() method

2017-09-15 Thread sjg
On 4 September 2017 at 14:12, Pantelis Antoniou wrote: > In some cases you need to add a property but the contents of it > are not known at creation time, merely the extend of it. > > This method allows you to create a property of a given size (filled > with

Re: [U-Boot] [PATCH v3 01/14] Introduce fdt_setprop_placeholder() method

2017-09-08 Thread Simon Glass
On 4 September 2017 at 14:12, Pantelis Antoniou wrote: > In some cases you need to add a property but the contents of it > are not known at creation time, merely the extend of it. > > This method allows you to create a property of a given size (filled > with

[U-Boot] [PATCH v3 01/14] Introduce fdt_setprop_placeholder() method

2017-09-04 Thread Pantelis Antoniou
In some cases you need to add a property but the contents of it are not known at creation time, merely the extend of it. This method allows you to create a property of a given size (filled with garbage) while a pointer to the property data will be provided. Signed-off-by: Pantelis Antoniou