Re: [U-Boot] [PATCH v3 1/4] core: Add functions to set properties in live-tree

2018-10-02 Thread Simon Glass
On 27 September 2018 at 06:52, Mario Six wrote: > Hi Simon, > On Thu, Sep 27, 2018 at 3:42 PM Simon Glass wrote: >> >> Hi Mario, >> >> On 26 September 2018 at 06:34, Mario Six wrote: >> > >> > Hi Simon, >> > On Wed, Jun 27, 2018 at 1:18 AM Simon Glass wrote: >> > > >> > > On 26 June 2018 at 00:

Re: [U-Boot] [PATCH v3 1/4] core: Add functions to set properties in live-tree

2018-09-27 Thread Mario Six
Hi Simon, On Thu, Sep 27, 2018 at 3:42 PM Simon Glass wrote: > > Hi Mario, > > On 26 September 2018 at 06:34, Mario Six wrote: > > > > Hi Simon, > > On Wed, Jun 27, 2018 at 1:18 AM Simon Glass wrote: > > > > > > On 26 June 2018 at 00:46, Mario Six wrote: > > > > Implement a set of functions to

Re: [U-Boot] [PATCH v3 1/4] core: Add functions to set properties in live-tree

2018-09-27 Thread Simon Glass
Hi Mario, On 26 September 2018 at 06:34, Mario Six wrote: > > Hi Simon, > On Wed, Jun 27, 2018 at 1:18 AM Simon Glass wrote: > > > > On 26 June 2018 at 00:46, Mario Six wrote: > > > Implement a set of functions to manipulate properties in a live device > > > tree: > > > > > > * ofnode_write_pro

Re: [U-Boot] [PATCH v3 1/4] core: Add functions to set properties in live-tree

2018-09-26 Thread Mario Six
Hi Simon, On Wed, Jun 27, 2018 at 1:18 AM Simon Glass wrote: > > On 26 June 2018 at 00:46, Mario Six wrote: > > Implement a set of functions to manipulate properties in a live device > > tree: > > > > * ofnode_write_prop() to set generic properties of a node > > * ofnode_write_string() to set str

Re: [U-Boot] [PATCH v3 1/4] core: Add functions to set properties in live-tree

2018-06-26 Thread Simon Glass
On 26 June 2018 at 00:46, Mario Six wrote: > Implement a set of functions to manipulate properties in a live device > tree: > > * ofnode_write_prop() to set generic properties of a node > * ofnode_write_string() to set string properties of a node > * ofnode_set_enabled() to either enable or disabl

[U-Boot] [PATCH v3 1/4] core: Add functions to set properties in live-tree

2018-06-25 Thread Mario Six
Implement a set of functions to manipulate properties in a live device tree: * ofnode_write_prop() to set generic properties of a node * ofnode_write_string() to set string properties of a node * ofnode_set_enabled() to either enable or disable a node Signed-off-by: Mario Six --- v2 -> v3: * R