linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] omap: zoom2/3: fix build caused by wl1271 support
@ 2010-10-01 20:33 Anand Gadiyar
  2010-10-01 23:10 ` Tony Lindgren
  0 siblings, 1 reply; 12+ messages in thread
From: Anand Gadiyar @ 2010-10-01 20:33 UTC (permalink / raw)
  To: linux-omap, linux-wireless; +Cc: Anand Gadiyar, Ohad Ben-Cohen, Tony Lindgren

Patch "omap: zoom: add mmc3/wl1271 device support" in the
wireless tree still uses .wires in struct omap2_hsmmc_info.
.wires has now been replaced with .caps in patch "omap: mmc:
extended to pass host capabilities from board file" in the
OMAP tree.

This causes linux-next as of 20101001 build to break as
below. Fix this.

  CC      arch/arm/mach-omap2/board-zoom-peripherals.o
arch/arm/mach-omap2/board-zoom-peripherals.c:217: error: unknown field 'wires' specified in initializer
make[1]: *** [arch/arm/mach-omap2/board-zoom-peripherals.o] Error 1
make: *** [arch/arm/mach-omap2] Error 2

Signed-off-by: Anand Gadiyar <gadiyar@ti.com>
Cc: Ohad Ben-Cohen <ohad@wizery.com>
Cc: Tony Lindgren <tony@atomide.com>
---
 arch/arm/mach-omap2/board-zoom-peripherals.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6/arch/arm/mach-omap2/board-zoom-peripherals.c
===================================================================
--- linux-2.6.orig/arch/arm/mach-omap2/board-zoom-peripherals.c
+++ linux-2.6/arch/arm/mach-omap2/board-zoom-peripherals.c
@@ -214,7 +214,7 @@ static struct omap2_hsmmc_info mmc[] __i
 	{
 		.name		= "wl1271",
 		.mmc		= 3,
-		.wires		= 4,
+		.caps		= MMC_CAP_4_BIT_DATA,
 		.gpio_wp	= -EINVAL,
 		.gpio_cd	= -EINVAL,
 		.nonremovable	= true,

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH] omap: zoom2/3: fix build caused by wl1271 support
  2010-10-01 20:33 [PATCH] omap: zoom2/3: fix build caused by wl1271 support Anand Gadiyar
@ 2010-10-01 23:10 ` Tony Lindgren
  2010-10-05 11:53   ` Luciano Coelho
  0 siblings, 1 reply; 12+ messages in thread
From: Tony Lindgren @ 2010-10-01 23:10 UTC (permalink / raw)
  To: Anand Gadiyar; +Cc: linux-omap, linux-wireless, Ohad Ben-Cohen

* Anand Gadiyar <gadiyar@ti.com> [101001 13:25]:
> Patch "omap: zoom: add mmc3/wl1271 device support" in the
> wireless tree still uses .wires in struct omap2_hsmmc_info.
> .wires has now been replaced with .caps in patch "omap: mmc:
> extended to pass host capabilities from board file" in the
> OMAP tree.
> 
> This causes linux-next as of 20101001 build to break as
> below. Fix this.
> 
>   CC      arch/arm/mach-omap2/board-zoom-peripherals.o
> arch/arm/mach-omap2/board-zoom-peripherals.c:217: error: unknown field 'wires' specified in initializer
> make[1]: *** [arch/arm/mach-omap2/board-zoom-peripherals.o] Error 1
> make: *** [arch/arm/mach-omap2] Error 2

Can you guys please queue this via the wireless tree along with
the other wl1271 patches?

Acked-by: Tony Lindgren <tony@atomide.com>
 
> Signed-off-by: Anand Gadiyar <gadiyar@ti.com>
> Cc: Ohad Ben-Cohen <ohad@wizery.com>
> Cc: Tony Lindgren <tony@atomide.com>
> ---
>  arch/arm/mach-omap2/board-zoom-peripherals.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Index: linux-2.6/arch/arm/mach-omap2/board-zoom-peripherals.c
> ===================================================================
> --- linux-2.6.orig/arch/arm/mach-omap2/board-zoom-peripherals.c
> +++ linux-2.6/arch/arm/mach-omap2/board-zoom-peripherals.c
> @@ -214,7 +214,7 @@ static struct omap2_hsmmc_info mmc[] __i
>  	{
>  		.name		= "wl1271",
>  		.mmc		= 3,
> -		.wires		= 4,
> +		.caps		= MMC_CAP_4_BIT_DATA,
>  		.gpio_wp	= -EINVAL,
>  		.gpio_cd	= -EINVAL,
>  		.nonremovable	= true,

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH] omap: zoom2/3: fix build caused by wl1271 support
  2010-10-01 23:10 ` Tony Lindgren
@ 2010-10-05 11:53   ` Luciano Coelho
  2010-10-05 12:07     ` Luciano Coelho
  0 siblings, 1 reply; 12+ messages in thread
From: Luciano Coelho @ 2010-10-05 11:53 UTC (permalink / raw)
  To: ext Tony Lindgren, John W. Linville
  Cc: Anand Gadiyar, linux-omap@vger.kernel.org,
	linux-wireless@vger.kernel.org, Ohad Ben-Cohen

On Sat, 2010-10-02 at 01:10 +0200, ext Tony Lindgren wrote:
> * Anand Gadiyar <gadiyar@ti.com> [101001 13:25]:
> > Patch "omap: zoom: add mmc3/wl1271 device support" in the
> > wireless tree still uses .wires in struct omap2_hsmmc_info.
> > .wires has now been replaced with .caps in patch "omap: mmc:
> > extended to pass host capabilities from board file" in the
> > OMAP tree.
> > 
> > This causes linux-next as of 20101001 build to break as
> > below. Fix this.
> > 
> >   CC      arch/arm/mach-omap2/board-zoom-peripherals.o
> > arch/arm/mach-omap2/board-zoom-peripherals.c:217: error: unknown field 'wires' specified in initializer
> > make[1]: *** [arch/arm/mach-omap2/board-zoom-peripherals.o] Error 1
> > make: *** [arch/arm/mach-omap2] Error 2
> 
> Can you guys please queue this via the wireless tree along with
> the other wl1271 patches?
> 
> Acked-by: Tony Lindgren <tony@atomide.com>

I can apply this to the wl12xx tree.  I just need John's confirmation.  

The pull request I sent to John last week is still pending.  I don't
know if it is possible to substitute it for a newer one with more
patches (and still try to make it to 2.6.37).  What do you think, John?


-- 
Cheers,
Luca.


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH] omap: zoom2/3: fix build caused by wl1271 support
  2010-10-05 11:53   ` Luciano Coelho
@ 2010-10-05 12:07     ` Luciano Coelho
  2010-10-05 13:19       ` Luciano Coelho
  0 siblings, 1 reply; 12+ messages in thread
From: Luciano Coelho @ 2010-10-05 12:07 UTC (permalink / raw)
  To: ext Tony Lindgren, John W. Linville
  Cc: Anand Gadiyar, linux-omap@vger.kernel.org,
	linux-wireless@vger.kernel.org, Ohad Ben-Cohen

On Tue, 2010-10-05 at 13:53 +0200, ext Luciano Coelho wrote:
> On Sat, 2010-10-02 at 01:10 +0200, ext Tony Lindgren wrote:
> > * Anand Gadiyar <gadiyar@ti.com> [101001 13:25]:
> > > Patch "omap: zoom: add mmc3/wl1271 device support" in the
> > > wireless tree still uses .wires in struct omap2_hsmmc_info.
> > > .wires has now been replaced with .caps in patch "omap: mmc:
> > > extended to pass host capabilities from board file" in the
> > > OMAP tree.
> > > 
> > > This causes linux-next as of 20101001 build to break as
> > > below. Fix this.
> > > 
> > >   CC      arch/arm/mach-omap2/board-zoom-peripherals.o
> > > arch/arm/mach-omap2/board-zoom-peripherals.c:217: error: unknown field 'wires' specified in initializer
> > > make[1]: *** [arch/arm/mach-omap2/board-zoom-peripherals.o] Error 1
> > > make: *** [arch/arm/mach-omap2] Error 2
> > 
> > Can you guys please queue this via the wireless tree along with
> > the other wl1271 patches?
> > 
> > Acked-by: Tony Lindgren <tony@atomide.com>
> 
> I can apply this to the wl12xx tree.  I just need John's confirmation.  
> 
> The pull request I sent to John last week is still pending.  I don't
> know if it is possible to substitute it for a newer one with more
> patches (and still try to make it to 2.6.37).  What do you think, John?

Damn, for some reason I had a bug in John's email in my contact book.
Now sending to the correct email address.

-- 
Cheers,
Luca.


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH] omap: zoom2/3: fix build caused by wl1271 support
  2010-10-05 12:07     ` Luciano Coelho
@ 2010-10-05 13:19       ` Luciano Coelho
  2010-10-05 20:39         ` Luciano Coelho
  0 siblings, 1 reply; 12+ messages in thread
From: Luciano Coelho @ 2010-10-05 13:19 UTC (permalink / raw)
  To: ext Tony Lindgren
  Cc: John W. Linville, Anand Gadiyar, linux-omap@vger.kernel.org,
	linux-wireless@vger.kernel.org, Ohad Ben-Cohen

On Tue, 2010-10-05 at 14:07 +0200, ext Luciano Coelho wrote:
> On Tue, 2010-10-05 at 13:53 +0200, ext Luciano Coelho wrote:
> > On Sat, 2010-10-02 at 01:10 +0200, ext Tony Lindgren wrote:
> > > * Anand Gadiyar <gadiyar@ti.com> [101001 13:25]:
> > > > Patch "omap: zoom: add mmc3/wl1271 device support" in the
> > > > wireless tree still uses .wires in struct omap2_hsmmc_info.
> > > > .wires has now been replaced with .caps in patch "omap: mmc:
> > > > extended to pass host capabilities from board file" in the
> > > > OMAP tree.
> > > > 
> > > > This causes linux-next as of 20101001 build to break as
> > > > below. Fix this.
> > > > 
> > > >   CC      arch/arm/mach-omap2/board-zoom-peripherals.o
> > > > arch/arm/mach-omap2/board-zoom-peripherals.c:217: error: unknown field 'wires' specified in initializer
> > > > make[1]: *** [arch/arm/mach-omap2/board-zoom-peripherals.o] Error 1
> > > > make: *** [arch/arm/mach-omap2] Error 2
> > > 
> > > Can you guys please queue this via the wireless tree along with
> > > the other wl1271 patches?
> > > 
> > > Acked-by: Tony Lindgren <tony@atomide.com>
> > 
> > I can apply this to the wl12xx tree.  I just need John's confirmation.  
> > 
> > The pull request I sent to John last week is still pending.  I don't
> > know if it is possible to substitute it for a newer one with more
> > patches (and still try to make it to 2.6.37).  What do you think, John?
> 
> Damn, for some reason I had a bug in John's email in my contact book.
> Now sending to the correct email address.

Applied to the wl12xx tree.  I'll send a new replacement pull to John
today, including this patch.  Thanks.


-- 
Cheers,
Luca.


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH] omap: zoom2/3: fix build caused by wl1271 support
  2010-10-05 13:19       ` Luciano Coelho
@ 2010-10-05 20:39         ` Luciano Coelho
  2010-10-06 13:52           ` John W. Linville
  0 siblings, 1 reply; 12+ messages in thread
From: Luciano Coelho @ 2010-10-05 20:39 UTC (permalink / raw)
  To: ext Tony Lindgren, John W. Linville
  Cc: Anand Gadiyar, linux-omap@vger.kernel.org,
	linux-wireless@vger.kernel.org, Ohad Ben-Cohen

On Tue, 2010-10-05 at 15:19 +0200, ext Luciano Coelho wrote:
> On Tue, 2010-10-05 at 14:07 +0200, ext Luciano Coelho wrote:
> > On Tue, 2010-10-05 at 13:53 +0200, ext Luciano Coelho wrote:
> > > On Sat, 2010-10-02 at 01:10 +0200, ext Tony Lindgren wrote:
> > > > * Anand Gadiyar <gadiyar@ti.com> [101001 13:25]:
> > > > > Patch "omap: zoom: add mmc3/wl1271 device support" in the
> > > > > wireless tree still uses .wires in struct omap2_hsmmc_info.
> > > > > .wires has now been replaced with .caps in patch "omap: mmc:
> > > > > extended to pass host capabilities from board file" in the
> > > > > OMAP tree.
> > > > > 
> > > > > This causes linux-next as of 20101001 build to break as
> > > > > below. Fix this.
> > > > > 
> > > > >   CC      arch/arm/mach-omap2/board-zoom-peripherals.o
> > > > > arch/arm/mach-omap2/board-zoom-peripherals.c:217: error: unknown field 'wires' specified in initializer
> > > > > make[1]: *** [arch/arm/mach-omap2/board-zoom-peripherals.o] Error 1
> > > > > make: *** [arch/arm/mach-omap2] Error 2
> > > > 
> > > > Can you guys please queue this via the wireless tree along with
> > > > the other wl1271 patches?
> > > > 
> > > > Acked-by: Tony Lindgren <tony@atomide.com>
> > > 
> > > I can apply this to the wl12xx tree.  I just need John's confirmation.  
> > > 
> > > The pull request I sent to John last week is still pending.  I don't
> > > know if it is possible to substitute it for a newer one with more
> > > patches (and still try to make it to 2.6.37).  What do you think, John?
> > 
> > Damn, for some reason I had a bug in John's email in my contact book.
> > Now sending to the correct email address.
> 
> Applied to the wl12xx tree.  I'll send a new replacement pull to John
> today, including this patch.  Thanks.

Hmmm... We got a problem here.  This patch breaks builds when we *don't*
have "omap: mmc extended to pass host capabilities from board file".  We
don't have that on wireless-next yet, so builds with zoom boards
selected are broken.

Any ideas on how to solve this dilemma? I guess the proper way to handle
this would be to make the changes proposed in this patch when merging
instead of having a normal commit for it, wouldn't it?


-- 
Cheers,
Luca.


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH] omap: zoom2/3: fix build caused by wl1271 support
  2010-10-05 20:39         ` Luciano Coelho
@ 2010-10-06 13:52           ` John W. Linville
  2010-10-06 14:01             ` Gadiyar, Anand
  0 siblings, 1 reply; 12+ messages in thread
From: John W. Linville @ 2010-10-06 13:52 UTC (permalink / raw)
  To: Luciano Coelho
  Cc: ext Tony Lindgren, Anand Gadiyar, linux-omap@vger.kernel.org,
	linux-wireless@vger.kernel.org, Ohad Ben-Cohen

On Tue, Oct 05, 2010 at 11:39:47PM +0300, Luciano Coelho wrote:
> On Tue, 2010-10-05 at 15:19 +0200, ext Luciano Coelho wrote:
> > On Tue, 2010-10-05 at 14:07 +0200, ext Luciano Coelho wrote:
> > > On Tue, 2010-10-05 at 13:53 +0200, ext Luciano Coelho wrote:
> > > > On Sat, 2010-10-02 at 01:10 +0200, ext Tony Lindgren wrote:
> > > > > * Anand Gadiyar <gadiyar@ti.com> [101001 13:25]:
> > > > > > Patch "omap: zoom: add mmc3/wl1271 device support" in the
> > > > > > wireless tree still uses .wires in struct omap2_hsmmc_info.
> > > > > > .wires has now been replaced with .caps in patch "omap: mmc:
> > > > > > extended to pass host capabilities from board file" in the
> > > > > > OMAP tree.
> > > > > > 
> > > > > > This causes linux-next as of 20101001 build to break as
> > > > > > below. Fix this.
> > > > > > 
> > > > > >   CC      arch/arm/mach-omap2/board-zoom-peripherals.o
> > > > > > arch/arm/mach-omap2/board-zoom-peripherals.c:217: error: unknown field 'wires' specified in initializer
> > > > > > make[1]: *** [arch/arm/mach-omap2/board-zoom-peripherals.o] Error 1
> > > > > > make: *** [arch/arm/mach-omap2] Error 2
> > > > > 
> > > > > Can you guys please queue this via the wireless tree along with
> > > > > the other wl1271 patches?
> > > > > 
> > > > > Acked-by: Tony Lindgren <tony@atomide.com>
> > > > 
> > > > I can apply this to the wl12xx tree.  I just need John's confirmation.  
> > > > 
> > > > The pull request I sent to John last week is still pending.  I don't
> > > > know if it is possible to substitute it for a newer one with more
> > > > patches (and still try to make it to 2.6.37).  What do you think, John?
> > > 
> > > Damn, for some reason I had a bug in John's email in my contact book.
> > > Now sending to the correct email address.
> > 
> > Applied to the wl12xx tree.  I'll send a new replacement pull to John
> > today, including this patch.  Thanks.
> 
> Hmmm... We got a problem here.  This patch breaks builds when we *don't*
> have "omap: mmc extended to pass host capabilities from board file".  We
> don't have that on wireless-next yet, so builds with zoom boards
> selected are broken.
> 
> Any ideas on how to solve this dilemma? I guess the proper way to handle
> this would be to make the changes proposed in this patch when merging
> instead of having a normal commit for it, wouldn't it?

Just cherry-pick that change into the branch of your tree that I do
_not_ pull from.  I presume that it is already available in linux-next?

John
-- 
John W. Linville		Someday the world will need a hero, and you
linville@tuxdriver.com			might be all we have.  Be ready.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH] omap: zoom2/3: fix build caused by wl1271 support
  2010-10-06 13:52           ` John W. Linville
@ 2010-10-06 14:01             ` Gadiyar, Anand
  2010-10-06 15:27               ` Luciano Coelho
  0 siblings, 1 reply; 12+ messages in thread
From: Gadiyar, Anand @ 2010-10-06 14:01 UTC (permalink / raw)
  To: John W. Linville
  Cc: Luciano Coelho, ext Tony Lindgren, linux-omap@vger.kernel.org,
	linux-wireless@vger.kernel.org, Ohad Ben-Cohen

>> Hmmm... We got a problem here.  This patch breaks builds when we *don't*
>> have "omap: mmc extended to pass host capabilities from board file".  We
>> don't have that on wireless-next yet, so builds with zoom boards
>> selected are broken.
>>
>> Any ideas on how to solve this dilemma? I guess the proper way to handle
>> this would be to make the changes proposed in this patch when merging
>> instead of having a normal commit for it, wouldn't it?
>
> Just cherry-pick that change into the branch of your tree that I do
> _not_ pull from.  I presume that it is already available in linux-next?
>

Yup - both patches are in linux-next; that's where we noticed the build break.

- Anand

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH] omap: zoom2/3: fix build caused by wl1271 support
  2010-10-06 14:01             ` Gadiyar, Anand
@ 2010-10-06 15:27               ` Luciano Coelho
  2010-10-06 15:30                 ` John W. Linville
  0 siblings, 1 reply; 12+ messages in thread
From: Luciano Coelho @ 2010-10-06 15:27 UTC (permalink / raw)
  To: ext Gadiyar, Anand
  Cc: John W. Linville, ext Tony Lindgren, linux-omap@vger.kernel.org,
	linux-wireless@vger.kernel.org, Ohad Ben-Cohen

On Wed, 2010-10-06 at 16:01 +0200, ext Gadiyar, Anand wrote:
> >> Hmmm... We got a problem here.  This patch breaks builds when we *don't*
> >> have "omap: mmc extended to pass host capabilities from board file".  We
> >> don't have that on wireless-next yet, so builds with zoom boards
> >> selected are broken.
> >>
> >> Any ideas on how to solve this dilemma? I guess the proper way to handle
> >> this would be to make the changes proposed in this patch when merging
> >> instead of having a normal commit for it, wouldn't it?
> >
> > Just cherry-pick that change into the branch of your tree that I do
> > _not_ pull from.  I presume that it is already available in linux-next?
> >
> 
> Yup - both patches are in linux-next; that's where we noticed the build break.

Ok, I hope the patch applies cleanly in our trees.

John, don't you want to do the cherry-pick on your wireless-testing
then? If you do it, I can "inherit" that, because I pull from it into my
"testing" branch (wl12xx/master).  At the moment, w-t is broken too.

-- 
Cheers,
Luca.


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH] omap: zoom2/3: fix build caused by wl1271 support
  2010-10-06 15:27               ` Luciano Coelho
@ 2010-10-06 15:30                 ` John W. Linville
  2010-10-06 15:55                   ` Luciano Coelho
  0 siblings, 1 reply; 12+ messages in thread
From: John W. Linville @ 2010-10-06 15:30 UTC (permalink / raw)
  To: Luciano Coelho
  Cc: ext Gadiyar, Anand, ext Tony Lindgren, linux-omap@vger.kernel.org,
	linux-wireless@vger.kernel.org, Ohad Ben-Cohen

On Wed, Oct 06, 2010 at 06:27:49PM +0300, Luciano Coelho wrote:
> On Wed, 2010-10-06 at 16:01 +0200, ext Gadiyar, Anand wrote:
> > >> Hmmm... We got a problem here.  This patch breaks builds when we *don't*
> > >> have "omap: mmc extended to pass host capabilities from board file".  We
> > >> don't have that on wireless-next yet, so builds with zoom boards
> > >> selected are broken.
> > >>
> > >> Any ideas on how to solve this dilemma? I guess the proper way to handle
> > >> this would be to make the changes proposed in this patch when merging
> > >> instead of having a normal commit for it, wouldn't it?
> > >
> > > Just cherry-pick that change into the branch of your tree that I do
> > > _not_ pull from.  I presume that it is already available in linux-next?
> > >
> > 
> > Yup - both patches are in linux-next; that's where we noticed the build break.
> 
> Ok, I hope the patch applies cleanly in our trees.
> 
> John, don't you want to do the cherry-pick on your wireless-testing
> then? If you do it, I can "inherit" that, because I pull from it into my
> "testing" branch (wl12xx/master).  At the moment, w-t is broken too.

OK, that's fine -- do you have the commit ID and the tree that has it?

John
-- 
John W. Linville		Someday the world will need a hero, and you
linville@tuxdriver.com			might be all we have.  Be ready.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH] omap: zoom2/3: fix build caused by wl1271 support
  2010-10-06 15:30                 ` John W. Linville
@ 2010-10-06 15:55                   ` Luciano Coelho
  2010-10-06 19:34                     ` Luciano Coelho
  0 siblings, 1 reply; 12+ messages in thread
From: Luciano Coelho @ 2010-10-06 15:55 UTC (permalink / raw)
  To: ext John W. Linville
  Cc: ext Gadiyar, Anand, ext Tony Lindgren, linux-omap@vger.kernel.org,
	linux-wireless@vger.kernel.org, Ohad Ben-Cohen

On Wed, 2010-10-06 at 17:30 +0200, ext John W. Linville wrote:
> On Wed, Oct 06, 2010 at 06:27:49PM +0300, Luciano Coelho wrote:
> > On Wed, 2010-10-06 at 16:01 +0200, ext Gadiyar, Anand wrote:
> > > >> Hmmm... We got a problem here.  This patch breaks builds when we *don't*
> > > >> have "omap: mmc extended to pass host capabilities from board file".  We
> > > >> don't have that on wireless-next yet, so builds with zoom boards
> > > >> selected are broken.
> > > >>
> > > >> Any ideas on how to solve this dilemma? I guess the proper way to handle
> > > >> this would be to make the changes proposed in this patch when merging
> > > >> instead of having a normal commit for it, wouldn't it?
> > > >
> > > > Just cherry-pick that change into the branch of your tree that I do
> > > > _not_ pull from.  I presume that it is already available in linux-next?
> > > >
> > > 
> > > Yup - both patches are in linux-next; that's where we noticed the build break.
> > 
> > Ok, I hope the patch applies cleanly in our trees.
> > 
> > John, don't you want to do the cherry-pick on your wireless-testing
> > then? If you do it, I can "inherit" that, because I pull from it into my
> > "testing" branch (wl12xx/master).  At the moment, w-t is broken too.
> 
> OK, that's fine -- do you have the commit ID and the tree that has it?

Stephen's linux-net, commit 3a63833ec3002816a759a49ebda4e229c089114e.

http://git.kernel.org/?p=linux/kernel/git/next/linux-next.git;a=commit;h=3a63833ec3002816a759a49ebda4e229c089114e

-- 
Cheers,
Luca.


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH] omap: zoom2/3: fix build caused by wl1271 support
  2010-10-06 15:55                   ` Luciano Coelho
@ 2010-10-06 19:34                     ` Luciano Coelho
  0 siblings, 0 replies; 12+ messages in thread
From: Luciano Coelho @ 2010-10-06 19:34 UTC (permalink / raw)
  To: ext John W. Linville
  Cc: ext Gadiyar, Anand, ext Tony Lindgren, linux-omap@vger.kernel.org,
	linux-wireless@vger.kernel.org, Ohad Ben-Cohen

On Wed, 2010-10-06 at 17:55 +0200, ext Luciano Coelho wrote:
> On Wed, 2010-10-06 at 17:30 +0200, ext John W. Linville wrote:
> > On Wed, Oct 06, 2010 at 06:27:49PM +0300, Luciano Coelho wrote:
> > > On Wed, 2010-10-06 at 16:01 +0200, ext Gadiyar, Anand wrote:
> > > > >> Hmmm... We got a problem here.  This patch breaks builds when we *don't*
> > > > >> have "omap: mmc extended to pass host capabilities from board file".  We
> > > > >> don't have that on wireless-next yet, so builds with zoom boards
> > > > >> selected are broken.
> > > > >>
> > > > >> Any ideas on how to solve this dilemma? I guess the proper way to handle
> > > > >> this would be to make the changes proposed in this patch when merging
> > > > >> instead of having a normal commit for it, wouldn't it?
> > > > >
> > > > > Just cherry-pick that change into the branch of your tree that I do
> > > > > _not_ pull from.  I presume that it is already available in linux-next?
> > > > >
> > > > 
> > > > Yup - both patches are in linux-next; that's where we noticed the build break.
> > > 
> > > Ok, I hope the patch applies cleanly in our trees.
> > > 
> > > John, don't you want to do the cherry-pick on your wireless-testing
> > > then? If you do it, I can "inherit" that, because I pull from it into my
> > > "testing" branch (wl12xx/master).  At the moment, w-t is broken too.
> > 
> > OK, that's fine -- do you have the commit ID and the tree that has it?
> 
> Stephen's linux-net, commit 3a63833ec3002816a759a49ebda4e229c089114e.
> 
> http://git.kernel.org/?p=linux/kernel/git/next/linux-next.git;a=commit;h=3a63833ec3002816a759a49ebda4e229c089114e

I have cherry-picked it and merged it (there was a tiny conflict).  I've
pushed it into my wl12xx/master branch (wl12xx is at
git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git).

If you want to take it from my tree (which is already merged) into
wireless-testing, the commit is
adca3773ed7ad185b1314432b6fbf92db7e11bc0.


-- 
Cheers,
Luca.


^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2010-10-06 19:37 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-01 20:33 [PATCH] omap: zoom2/3: fix build caused by wl1271 support Anand Gadiyar
2010-10-01 23:10 ` Tony Lindgren
2010-10-05 11:53   ` Luciano Coelho
2010-10-05 12:07     ` Luciano Coelho
2010-10-05 13:19       ` Luciano Coelho
2010-10-05 20:39         ` Luciano Coelho
2010-10-06 13:52           ` John W. Linville
2010-10-06 14:01             ` Gadiyar, Anand
2010-10-06 15:27               ` Luciano Coelho
2010-10-06 15:30                 ` John W. Linville
2010-10-06 15:55                   ` Luciano Coelho
2010-10-06 19:34                     ` Luciano Coelho

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).