Re: [PATCH v3 3/8] component: add support for component match array

2014-07-04 Thread Sachin Kamat
On Fri, Jul 4, 2014 at 5:55 PM, Russell King - ARM Linux wrote: > On Fri, Jul 04, 2014 at 05:00:36PM +0530, Sachin Kamat wrote: >> On Fri, Jul 4, 2014 at 4:22 PM, Russell King - ARM Linux >> wrote: >> > On Fri, Jul 04, 2014 at 04:17:35PM +0530, Sachin Kamat wrote: >> >> Hi Russell >> >> >> >> > +

Re: [PATCH v3 3/8] component: add support for component match array

2014-07-04 Thread Russell King - ARM Linux
On Fri, Jul 04, 2014 at 05:00:36PM +0530, Sachin Kamat wrote: > On Fri, Jul 4, 2014 at 4:22 PM, Russell King - ARM Linux > wrote: > > On Fri, Jul 04, 2014 at 04:17:35PM +0530, Sachin Kamat wrote: > >> Hi Russell > >> > >> > +int component_master_add_with_match(struct device *dev, > >> > + co

Re: [PATCH v3 3/8] component: add support for component match array

2014-07-04 Thread Sachin Kamat
On Fri, Jul 4, 2014 at 4:22 PM, Russell King - ARM Linux wrote: > On Fri, Jul 04, 2014 at 04:17:35PM +0530, Sachin Kamat wrote: >> Hi Russell >> >> > +int component_master_add_with_match(struct device *dev, >> > + const struct component_master_ops *ops, >> > + struct component_match *m

Re: [PATCH v3 3/8] component: add support for component match array

2014-07-04 Thread Russell King - ARM Linux
On Fri, Jul 04, 2014 at 04:17:35PM +0530, Sachin Kamat wrote: > Hi Russell > > > +int component_master_add_with_match(struct device *dev, > > + const struct component_master_ops *ops, > > + struct component_match *match) > > { > > struct master *master; > > int ret; >

Re: [PATCH v3 3/8] component: add support for component match array

2014-07-04 Thread Sachin Kamat
Hi Russell > Add support for generating a set of component matches at master probe > time, and submitting them to the component layer. This allows the > component layer to perform the matches internally without needing to > call into the master driver, and allows for further restructuring of > th