Re: [U-Boot] [PATCH 2/3] core: Add functions to set properties in live-tree

2018-04-18 Thread Mario Six
Hi Simon, On Thu, Apr 12, 2018 at 6:42 PM, Simon Glass wrote: > Hi Mario, > > On 10 April 2018 at 05:23, Mario Six wrote: >> Hi Simon, >> >> On Fri, Mar 30, 2018 at 12:43 AM, Simon Glass wrote: >>> Hi Mario, >>> >>> On 28 March 2018 at 20:37, Mario Six wrote: Implement a set of functions

Re: [U-Boot] [PATCH 2/3] core: Add functions to set properties in live-tree

2018-04-12 Thread Simon Glass
Hi Mario, On 10 April 2018 at 05:23, Mario Six wrote: > Hi Simon, > > On Fri, Mar 30, 2018 at 12:43 AM, Simon Glass wrote: >> Hi Mario, >> >> On 28 March 2018 at 20:37, Mario Six wrote: >>> Implement a set of functions to manipulate properties in a live device >>> tree: >>> >>> * ofnode_set_pro

Re: [U-Boot] [PATCH 2/3] core: Add functions to set properties in live-tree

2018-04-10 Thread Mario Six
Hi Simon, On Fri, Mar 30, 2018 at 12:43 AM, Simon Glass wrote: > Hi Mario, > > On 28 March 2018 at 20:37, Mario Six wrote: >> Implement a set of functions to manipulate properties in a live device >> tree: >> >> * ofnode_set_property() to set generic properties of a node >> * ofnode_write_string

Re: [U-Boot] [PATCH 2/3] core: Add functions to set properties in live-tree

2018-03-29 Thread Simon Glass
Hi Mario, On 28 March 2018 at 20:37, Mario Six wrote: > Implement a set of functions to manipulate properties in a live device > tree: > > * ofnode_set_property() to set generic properties of a node > * ofnode_write_string() to set string properties of a node > * ofnode_enable() to enable a node

[U-Boot] [PATCH 2/3] core: Add functions to set properties in live-tree

2018-03-28 Thread Mario Six
Implement a set of functions to manipulate properties in a live device tree: * ofnode_set_property() to set generic properties of a node * ofnode_write_string() to set string properties of a node * ofnode_enable() to enable a node * ofnode_disable() to disable a node Signed-off-by: Mario Six ---