Re: [PATCH] i2c-gpio: add devicetree support

2011-02-03 Thread Grant Likely
On Thu, Feb 03, 2011 at 10:26:20AM +0800, Thomas Chou wrote: > This patch adds devicetree support to i2c-gpio driver. It converts > dts bindings and allocates a struct i2c_gpio_platform_data, which > will be freed on driver removal. > > Signed-off-by: Albert Herranz > Signed-off-by: Thomas Chou

Re: [PATCH] i2c-gpio: add devicetree support

2011-02-02 Thread Håvard Skinnemoen
On Wed, Feb 2, 2011 at 6:26 PM, Thomas Chou wrote: > This patch adds devicetree support to i2c-gpio driver. It converts > dts bindings and allocates a struct i2c_gpio_platform_data, which > will be freed on driver removal. > > Signed-off-by: Albert Herranz > Signed-off-by: Thomas Chou Acked-by:

[PATCH] i2c-gpio: add devicetree support

2011-02-02 Thread Thomas Chou
This patch adds devicetree support to i2c-gpio driver. It converts dts bindings and allocates a struct i2c_gpio_platform_data, which will be freed on driver removal. Signed-off-by: Albert Herranz Signed-off-by: Thomas Chou --- for v2.6.39 v2 move of nodes probing to a hook, which will be optimiz

Re: [PATCH] i2c-gpio: add devicetree support

2011-01-31 Thread Grant Likely
On Mon, Jan 31, 2011 at 02:35:31PM -0800, Håvard Skinnemoen wrote: > Hi, > > On Mon, Jan 31, 2011 at 12:09 AM, Grant Likely > wrote: > > On Sun, Jan 30, 2011 at 8:26 PM, Håvard Skinnemoen > > wrote: > >> Hi, > >> > >> On Sun, Jan 30, 2011 at 7:56 AM, Thomas Chou wrote: > >>> From: Albert Herran

Re: [PATCH] i2c-gpio: add devicetree support

2011-01-31 Thread Håvard Skinnemoen
Hi, On Mon, Jan 31, 2011 at 12:09 AM, Grant Likely wrote: > On Sun, Jan 30, 2011 at 8:26 PM, Håvard Skinnemoen > wrote: >> Hi, >> >> On Sun, Jan 30, 2011 at 7:56 AM, Thomas Chou wrote: >>> From: Albert Herranz >>> >>> This patch is based on an earlier patch from Albert Herranz, >>> http://git.

Re: [PATCH] i2c-gpio: add devicetree support

2011-01-31 Thread Håvard Skinnemoen
Hi, On Sun, Jan 30, 2011 at 7:56 AM, Thomas Chou wrote: > From: Albert Herranz > > This patch is based on an earlier patch from Albert Herranz, > http://git.infradead.org/users/herraa1/gc-linux-2.6.git/commit/ > 9854eb78607c641ab5ae85bcbe3c9d14ac113733 That commit has a single-line description

Re: [PATCH] i2c-gpio: add devicetree support

2011-01-31 Thread Grant Likely
On Jan 31, 2011 6:55 AM, "Jon Loeliger" wrote: > > > > Is this field always present even when of is disabled? > > > > No, not yet. It will be in 2.6.29. > > Perhaps even 2.6.39? :-) Gah! Yes. I keep doing that, I don't know why. g. > > jdl ___ devi

Re: [PATCH] i2c-gpio: add devicetree support

2011-01-31 Thread Jon Loeliger
> > Is this field always present even when of is disabled? > > No, not yet. It will be in 2.6.29. Perhaps even 2.6.39? :-) jdl ___ devicetree-discuss mailing list devicetree-discuss@lists.ozlabs.org https://lists.ozlabs.org/listinfo/devicetree-discuss

Re: [PATCH] i2c-gpio: add devicetree support

2011-01-31 Thread Grant Likely
On Sun, Jan 30, 2011 at 8:26 PM, Håvard Skinnemoen wrote: > Hi, > > On Sun, Jan 30, 2011 at 7:56 AM, Thomas Chou wrote: >> From: Albert Herranz >> >> This patch is based on an earlier patch from Albert Herranz, >> http://git.infradead.org/users/herraa1/gc-linux-2.6.git/commit/ >> 9854eb78607c641

[PATCH] i2c-gpio: add devicetree support

2011-01-30 Thread Thomas Chou
From: Albert Herranz This patch is based on an earlier patch from Albert Herranz, http://git.infradead.org/users/herraa1/gc-linux-2.6.git/commit/ 9854eb78607c641ab5ae85bcbe3c9d14ac113733 The dts binding is modified as Grant suggested. The of probing is merged inline instead of a separate file. I