Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods

2015-09-21 Thread Pantelis Antoniou
Hi Geert, > On Sep 21, 2015, at 16:07 , Geert Uytterhoeven wrote: > > Hi Pantelis, > > On Mon, Sep 21, 2015 at 2:49 PM, Pantelis Antoniou > wrote: >>> On Sep 21, 2015, at 15:47 , Geert Uytterhoeven wrote: >>> On Mon, Sep 21, 2015 at 2:36 PM, Pantelis Antoniou >>> wrote: > On Sep 21, 2015

Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods

2015-09-21 Thread Geert Uytterhoeven
Hi Pantelis, On Mon, Sep 21, 2015 at 2:49 PM, Pantelis Antoniou wrote: >> On Sep 21, 2015, at 15:47 , Geert Uytterhoeven wrote: >> On Mon, Sep 21, 2015 at 2:36 PM, Pantelis Antoniou >> wrote: On Sep 21, 2015, at 15:35 , Geert Uytterhoeven wrote: On Wed, Sep 16, 2015 at 6:11 PM,

Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods

2015-09-21 Thread Pantelis Antoniou
Hi Geert, > On Sep 21, 2015, at 15:47 , Geert Uytterhoeven wrote: > > Hi Pantelis, > > On Mon, Sep 21, 2015 at 2:36 PM, Pantelis Antoniou > wrote: >>> On Sep 21, 2015, at 15:35 , Geert Uytterhoeven wrote: >>> On Wed, Sep 16, 2015 at 6:11 PM, Pantelis Antoniou >>> wrote: Changesets are v

Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods

2015-09-21 Thread Geert Uytterhoeven
Hi Pantelis, On Mon, Sep 21, 2015 at 2:36 PM, Pantelis Antoniou wrote: >> On Sep 21, 2015, at 15:35 , Geert Uytterhoeven wrote: >> On Wed, Sep 16, 2015 at 6:11 PM, Pantelis Antoniou >> wrote: >>> Changesets are very powerful, but the lack of a helper API >>> makes using them cumbersome. Introdu

Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods

2015-09-21 Thread Pantelis Antoniou
Hi Geert, > On Sep 21, 2015, at 15:35 , Geert Uytterhoeven wrote: > > Hi Pantelis, > > On Wed, Sep 16, 2015 at 6:11 PM, Pantelis Antoniou > wrote: >> Changesets are very powerful, but the lack of a helper API >> makes using them cumbersome. Introduce a simple copy based >> API that makes thing

Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods

2015-09-21 Thread Geert Uytterhoeven
Hi Pantelis, On Wed, Sep 16, 2015 at 6:11 PM, Pantelis Antoniou wrote: > Changesets are very powerful, but the lack of a helper API > makes using them cumbersome. Introduce a simple copy based > API that makes things considerably easier. > > To wit, adding a property using the raw API. > >

Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods

2015-09-18 Thread Rob Herring
On Fri, Sep 18, 2015 at 4:15 AM, Pantelis Antoniou wrote: > Hi Rob, > >> On Sep 17, 2015, at 17:13 , Rob Herring wrote: >> >> On 09/16/2015 11:11 AM, Pantelis Antoniou wrote: >>> Changesets are very powerful, but the lack of a helper API >>> makes using them cumbersome. Introduce a simple copy ba

Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods

2015-09-18 Thread Pantelis Antoniou
Hi Rob, > On Sep 17, 2015, at 17:13 , Rob Herring wrote: > > On 09/16/2015 11:11 AM, Pantelis Antoniou wrote: >> Changesets are very powerful, but the lack of a helper API >> makes using them cumbersome. Introduce a simple copy based >> API that makes things considerably easier. >> >> To wit, a

Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods

2015-09-17 Thread Rob Herring
On 09/16/2015 11:11 AM, Pantelis Antoniou wrote: > Changesets are very powerful, but the lack of a helper API > makes using them cumbersome. Introduce a simple copy based > API that makes things considerably easier. > > To wit, adding a property using the raw API. > > struct property *prop;

[PATCH v2 2/2] of: changesets: Introduce changeset helper methods

2015-09-16 Thread Pantelis Antoniou
Changesets are very powerful, but the lack of a helper API makes using them cumbersome. Introduce a simple copy based API that makes things considerably easier. To wit, adding a property using the raw API. struct property *prop; prop = kzalloc(sizeof(*prop)), GFP_KERNEL);