linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] compat-wireless: fix build of ath5k for CONFIG_PM_SLEEP=n
@ 2010-07-11 20:23 Hauke Mehrtens
  2010-07-12 15:30 ` Luis R. Rodriguez
  0 siblings, 1 reply; 9+ messages in thread
From: Hauke Mehrtens @ 2010-07-11 20:23 UTC (permalink / raw)
  To: lrodriguez; +Cc: linux-wireless, mcgrof, philipp_subx, Hauke Mehrtens

suspend and resume are activated in ath5k if CONFIG_PM_SLEEP is set and
not if just CONFIG_PM is set.

This should fix the problems reported by Philip Prindeville.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
---
 patches/11-dev-pm-ops.patch |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/patches/11-dev-pm-ops.patch b/patches/11-dev-pm-ops.patch
index 3e97ed9..688da84 100644
--- a/patches/11-dev-pm-ops.patch
+++ b/patches/11-dev-pm-ops.patch
@@ -49,7 +49,7 @@ calls on compat code with only slight modifications.
  	.remove		= __devexit_p(ath5k_pci_remove),
 +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,29))
  	.driver.pm	= ATH5K_PM_OPS,
-+#elif defined(CONFIG_PM)
++#elif defined(CONFIG_PM_SLEEP)
 +	.suspend        = ath5k_pci_suspend_compat,
 +	.resume         = ath5k_pci_resume_compat,
 +#endif
-- 
1.7.0.4


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

* Re: [PATCH] compat-wireless: fix build of ath5k for CONFIG_PM_SLEEP=n
  2010-07-11 20:23 [PATCH] compat-wireless: fix build of ath5k for CONFIG_PM_SLEEP=n Hauke Mehrtens
@ 2010-07-12 15:30 ` Luis R. Rodriguez
  2010-07-12 19:19   ` Philip A. Prindeville
  0 siblings, 1 reply; 9+ messages in thread
From: Luis R. Rodriguez @ 2010-07-12 15:30 UTC (permalink / raw)
  To: Hauke Mehrtens; +Cc: linux-wireless, mcgrof, philipp_subx

On Sun, Jul 11, 2010 at 1:23 PM, Hauke Mehrtens <hauke@hauke-m.de> wrote:
> suspend and resume are activated in ath5k if CONFIG_PM_SLEEP is set and
> not if just CONFIG_PM is set.
>
> This should fix the problems reported by Philip Prindeville.
>
> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>

Thanks! Applied and pushed out, at noon we'll have a new tarball with this.

  Luis

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

* Re: [PATCH] compat-wireless: fix build of ath5k for CONFIG_PM_SLEEP=n
  2010-07-12 15:30 ` Luis R. Rodriguez
@ 2010-07-12 19:19   ` Philip A. Prindeville
  2010-07-13 21:54     ` Luis R. Rodriguez
  0 siblings, 1 reply; 9+ messages in thread
From: Philip A. Prindeville @ 2010-07-12 19:19 UTC (permalink / raw)
  To: Luis R. Rodriguez; +Cc: Hauke Mehrtens, linux-wireless, mcgrof

On 07/12/2010 09:30 AM, Luis R. Rodriguez wrote:
> On Sun, Jul 11, 2010 at 1:23 PM, Hauke Mehrtens <hauke@hauke-m.de> wrote:
>> suspend and resume are activated in ath5k if CONFIG_PM_SLEEP is set and
>> not if just CONFIG_PM is set.
>>
>> This should fix the problems reported by Philip Prindeville.
>>
>> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
> 
> Thanks! Applied and pushed out, at noon we'll have a new tarball with this.
> 
>   Luis

And...


  CC [M]  /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.o
/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.c: In function 'l2cap_data_channel':
/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.c:4352: error: void value not ignored as it ought to be
make[4]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.o] Error 1
make[3]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth] Error 2
make[2]: *** [_module_/home/philipp/kernel/build_i586/compat-wireless-2010-07-12] Error 2
make[2]: Leaving directory `/home/philipp/kernel/build_i586/linux-2.6.27.48-astlinux'
make[1]: *** [modules] Error 2
make[1]: Leaving directory `/home/philipp/kernel/build_i586/compat-wireless-2010-07-12'
make: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/wireless/lib80211.ko] Error 2


oh, well.


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

* Re: [PATCH] compat-wireless: fix build of ath5k for CONFIG_PM_SLEEP=n
  2010-07-12 19:19   ` Philip A. Prindeville
@ 2010-07-13 21:54     ` Luis R. Rodriguez
  2010-07-13 22:44       ` Luis R. Rodriguez
  0 siblings, 1 reply; 9+ messages in thread
From: Luis R. Rodriguez @ 2010-07-13 21:54 UTC (permalink / raw)
  To: Philip A. Prindeville; +Cc: Hauke Mehrtens, linux-wireless, mcgrof

On Mon, Jul 12, 2010 at 12:19 PM, Philip A. Prindeville
<philipp_subx@redfish-solutions.com> wrote:
> On 07/12/2010 09:30 AM, Luis R. Rodriguez wrote:
>> On Sun, Jul 11, 2010 at 1:23 PM, Hauke Mehrtens <hauke@hauke-m.de> wrote:
>>> suspend and resume are activated in ath5k if CONFIG_PM_SLEEP is set and
>>> not if just CONFIG_PM is set.
>>>
>>> This should fix the problems reported by Philip Prindeville.
>>>
>>> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
>>
>> Thanks! Applied and pushed out, at noon we'll have a new tarball with this.
>>
>>   Luis
>
> And...
>
>
>  CC [M]  /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.o
> /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.c: In function 'l2cap_data_channel':
> /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.c:4352: error: void value not ignored as it ought to be
> make[4]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.o] Error 1
> make[3]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth] Error 2
> make[2]: *** [_module_/home/philipp/kernel/build_i586/compat-wireless-2010-07-12] Error 2
> make[2]: Leaving directory `/home/philipp/kernel/build_i586/linux-2.6.27.48-astlinux'
> make[1]: *** [modules] Error 2
> make[1]: Leaving directory `/home/philipp/kernel/build_i586/compat-wireless-2010-07-12'
> make: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/wireless/lib80211.ko] Error 2

Thanks for reporting this, I am working on it now.

  Luis

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

* Re: [PATCH] compat-wireless: fix build of ath5k for CONFIG_PM_SLEEP=n
  2010-07-13 21:54     ` Luis R. Rodriguez
@ 2010-07-13 22:44       ` Luis R. Rodriguez
  2010-07-14 18:11         ` Philip A. Prindeville
  0 siblings, 1 reply; 9+ messages in thread
From: Luis R. Rodriguez @ 2010-07-13 22:44 UTC (permalink / raw)
  To: Philip A. Prindeville; +Cc: Hauke Mehrtens, linux-wireless, mcgrof

On Tue, Jul 13, 2010 at 2:54 PM, Luis R. Rodriguez
<lrodriguez@atheros.com> wrote:
> On Mon, Jul 12, 2010 at 12:19 PM, Philip A. Prindeville
> <philipp_subx@redfish-solutions.com> wrote:
>> On 07/12/2010 09:30 AM, Luis R. Rodriguez wrote:
>>> On Sun, Jul 11, 2010 at 1:23 PM, Hauke Mehrtens <hauke@hauke-m.de> wrote:
>>>> suspend and resume are activated in ath5k if CONFIG_PM_SLEEP is set and
>>>> not if just CONFIG_PM is set.
>>>>
>>>> This should fix the problems reported by Philip Prindeville.
>>>>
>>>> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
>>>
>>> Thanks! Applied and pushed out, at noon we'll have a new tarball with this.
>>>
>>>   Luis
>>
>> And...
>>
>>
>>  CC [M]  /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.o
>> /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.c: In function 'l2cap_data_channel':
>> /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.c:4352: error: void value not ignored as it ought to be
>> make[4]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.o] Error 1
>> make[3]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth] Error 2
>> make[2]: *** [_module_/home/philipp/kernel/build_i586/compat-wireless-2010-07-12] Error 2
>> make[2]: Leaving directory `/home/philipp/kernel/build_i586/linux-2.6.27.48-astlinux'
>> make[1]: *** [modules] Error 2
>> make[1]: Leaving directory `/home/philipp/kernel/build_i586/compat-wireless-2010-07-12'
>> make: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/wireless/lib80211.ko] Error 2
>
> Thanks for reporting this, I am working on it now.

This is now fixed, I'll push out a new tarball shortly.

  Luis

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

* Re: [PATCH] compat-wireless: fix build of ath5k for CONFIG_PM_SLEEP=n
  2010-07-13 22:44       ` Luis R. Rodriguez
@ 2010-07-14 18:11         ` Philip A. Prindeville
  2010-07-14 18:33           ` Luis R. Rodriguez
  0 siblings, 1 reply; 9+ messages in thread
From: Philip A. Prindeville @ 2010-07-14 18:11 UTC (permalink / raw)
  To: Luis R. Rodriguez; +Cc: Hauke Mehrtens, linux-wireless, mcgrof

On 07/13/2010 04:44 PM, Luis R. Rodriguez wrote:
> On Tue, Jul 13, 2010 at 2:54 PM, Luis R. Rodriguez
> <lrodriguez@atheros.com> wrote:
>> On Mon, Jul 12, 2010 at 12:19 PM, Philip A. Prindeville
>> <philipp_subx@redfish-solutions.com> wrote:
>>> On 07/12/2010 09:30 AM, Luis R. Rodriguez wrote:
>>>> On Sun, Jul 11, 2010 at 1:23 PM, Hauke Mehrtens <hauke@hauke-m.de> wrote:
>>>>> suspend and resume are activated in ath5k if CONFIG_PM_SLEEP is set and
>>>>> not if just CONFIG_PM is set.
>>>>>
>>>>> This should fix the problems reported by Philip Prindeville.
>>>>>
>>>>> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
>>>>
>>>> Thanks! Applied and pushed out, at noon we'll have a new tarball with this.
>>>>
>>>>   Luis
>>>
>>> And...
>>>
>>>
>>>  CC [M]  /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.o
>>> /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.c: In function 'l2cap_data_channel':
>>> /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.c:4352: error: void value not ignored as it ought to be
>>> make[4]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.o] Error 1
>>> make[3]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth] Error 2
>>> make[2]: *** [_module_/home/philipp/kernel/build_i586/compat-wireless-2010-07-12] Error 2
>>> make[2]: Leaving directory `/home/philipp/kernel/build_i586/linux-2.6.27.48-astlinux'
>>> make[1]: *** [modules] Error 2
>>> make[1]: Leaving directory `/home/philipp/kernel/build_i586/compat-wireless-2010-07-12'
>>> make: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/wireless/lib80211.ko] Error 2
>>
>> Thanks for reporting this, I am working on it now.
> 
> This is now fixed, I'll push out a new tarball shortly.
> 
>   Luis

That tarball never made it out...  can you please retry?

Thanks.



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

* Re: [PATCH] compat-wireless: fix build of ath5k for CONFIG_PM_SLEEP=n
  2010-07-14 18:11         ` Philip A. Prindeville
@ 2010-07-14 18:33           ` Luis R. Rodriguez
  2010-07-14 19:42             ` Philip A. Prindeville
  0 siblings, 1 reply; 9+ messages in thread
From: Luis R. Rodriguez @ 2010-07-14 18:33 UTC (permalink / raw)
  To: Philip A. Prindeville; +Cc: Hauke Mehrtens, linux-wireless, mcgrof

On Wed, Jul 14, 2010 at 11:11 AM, Philip A. Prindeville
<philipp_subx@redfish-solutions.com> wrote:
> On 07/13/2010 04:44 PM, Luis R. Rodriguez wrote:
>> On Tue, Jul 13, 2010 at 2:54 PM, Luis R. Rodriguez
>> <lrodriguez@atheros.com> wrote:
>>> On Mon, Jul 12, 2010 at 12:19 PM, Philip A. Prindeville
>>> <philipp_subx@redfish-solutions.com> wrote:
>>>> On 07/12/2010 09:30 AM, Luis R. Rodriguez wrote:
>>>>> On Sun, Jul 11, 2010 at 1:23 PM, Hauke Mehrtens <hauke@hauke-m.de> wrote:
>>>>>> suspend and resume are activated in ath5k if CONFIG_PM_SLEEP is set and
>>>>>> not if just CONFIG_PM is set.
>>>>>>
>>>>>> This should fix the problems reported by Philip Prindeville.
>>>>>>
>>>>>> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
>>>>>
>>>>> Thanks! Applied and pushed out, at noon we'll have a new tarball with this.
>>>>>
>>>>>   Luis
>>>>
>>>> And...
>>>>
>>>>
>>>>  CC [M]  /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.o
>>>> /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.c: In function 'l2cap_data_channel':
>>>> /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.c:4352: error: void value not ignored as it ought to be
>>>> make[4]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.o] Error 1
>>>> make[3]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth] Error 2
>>>> make[2]: *** [_module_/home/philipp/kernel/build_i586/compat-wireless-2010-07-12] Error 2
>>>> make[2]: Leaving directory `/home/philipp/kernel/build_i586/linux-2.6.27.48-astlinux'
>>>> make[1]: *** [modules] Error 2
>>>> make[1]: Leaving directory `/home/philipp/kernel/build_i586/compat-wireless-2010-07-12'
>>>> make: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/wireless/lib80211.ko] Error 2
>>>
>>> Thanks for reporting this, I am working on it now.
>>
>> This is now fixed, I'll push out a new tarball shortly.
>>
>>   Luis
>
> That tarball never made it out...  can you please retry?

The cronjob kicks off at noon PST time.

  Luis

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

* Re: [PATCH] compat-wireless: fix build of ath5k for CONFIG_PM_SLEEP=n
  2010-07-14 18:33           ` Luis R. Rodriguez
@ 2010-07-14 19:42             ` Philip A. Prindeville
  2010-07-14 20:32               ` Luis R. Rodriguez
  0 siblings, 1 reply; 9+ messages in thread
From: Philip A. Prindeville @ 2010-07-14 19:42 UTC (permalink / raw)
  To: Luis R. Rodriguez; +Cc: Hauke Mehrtens, linux-wireless, mcgrof

On 07/14/2010 12:33 PM, Luis R. Rodriguez wrote:
> On Wed, Jul 14, 2010 at 11:11 AM, Philip A. Prindeville
> <philipp_subx@redfish-solutions.com> wrote:
>> On 07/13/2010 04:44 PM, Luis R. Rodriguez wrote:
>>> On Tue, Jul 13, 2010 at 2:54 PM, Luis R. Rodriguez
>>> <lrodriguez@atheros.com> wrote:
>>>> On Mon, Jul 12, 2010 at 12:19 PM, Philip A. Prindeville
>>>> <philipp_subx@redfish-solutions.com> wrote:
>>>>> On 07/12/2010 09:30 AM, Luis R. Rodriguez wrote:
>>>>>> On Sun, Jul 11, 2010 at 1:23 PM, Hauke Mehrtens <hauke@hauke-m.de> wrote:
>>>>>>> suspend and resume are activated in ath5k if CONFIG_PM_SLEEP is set and
>>>>>>> not if just CONFIG_PM is set.
>>>>>>>
>>>>>>> This should fix the problems reported by Philip Prindeville.
>>>>>>>
>>>>>>> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
>>>>>>
>>>>>> Thanks! Applied and pushed out, at noon we'll have a new tarball with this.
>>>>>>
>>>>>>   Luis
>>>>>
>>>>> And...
>>>>>
>>>>>
>>>>>  CC [M]  /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.o
>>>>> /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.c: In function 'l2cap_data_channel':
>>>>> /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.c:4352: error: void value not ignored as it ought to be
>>>>> make[4]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.o] Error 1
>>>>> make[3]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth] Error 2
>>>>> make[2]: *** [_module_/home/philipp/kernel/build_i586/compat-wireless-2010-07-12] Error 2
>>>>> make[2]: Leaving directory `/home/philipp/kernel/build_i586/linux-2.6.27.48-astlinux'
>>>>> make[1]: *** [modules] Error 2
>>>>> make[1]: Leaving directory `/home/philipp/kernel/build_i586/compat-wireless-2010-07-12'
>>>>> make: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/wireless/lib80211.ko] Error 2
>>>>
>>>> Thanks for reporting this, I am working on it now.
>>>
>>> This is now fixed, I'll push out a new tarball shortly.
>>>
>>>   Luis
>>
>> That tarball never made it out...  can you please retry?
> 
> The cronjob kicks off at noon PST time.
> 
>   Luis

Just picked up the tarball:

/home/philipp/kernel/build_i586/compat-wireless-2010-07-14/drivers/net/wireless/rt2x00/rt2x00pci.c: In function 'rt2x00pci_initialize':
/home/philipp/kernel/build_i586/compat-wireless-2010-07-14/drivers/net/wireless/rt2x00/rt2x00pci.c:156: error: implicit declaration of function 'request_threaded_irq'
make[5]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-14/drivers/net/wireless/rt2x00/rt2x00pci.o] Error 1
make[4]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-14/drivers/net/wireless/rt2x00] Error 2
make[4]: *** Waiting for unfinished jobs....


I'm thinking that it might be good to have a variety of nightly builds to detect damage.  Do you all have infrastructure for that?

This is building against 2.6.27.48



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

* Re: [PATCH] compat-wireless: fix build of ath5k for CONFIG_PM_SLEEP=n
  2010-07-14 19:42             ` Philip A. Prindeville
@ 2010-07-14 20:32               ` Luis R. Rodriguez
  0 siblings, 0 replies; 9+ messages in thread
From: Luis R. Rodriguez @ 2010-07-14 20:32 UTC (permalink / raw)
  To: Philip A. Prindeville
  Cc: Luis Rodriguez, Hauke Mehrtens, linux-wireless@vger.kernel.org,
	mcgrof@infradead.org

On Wed, Jul 14, 2010 at 12:42:13PM -0700, Philip A. Prindeville wrote:
> On 07/14/2010 12:33 PM, Luis R. Rodriguez wrote:
> > On Wed, Jul 14, 2010 at 11:11 AM, Philip A. Prindeville
> > <philipp_subx@redfish-solutions.com> wrote:
> >> On 07/13/2010 04:44 PM, Luis R. Rodriguez wrote:
> >>> On Tue, Jul 13, 2010 at 2:54 PM, Luis R. Rodriguez
> >>> <lrodriguez@atheros.com> wrote:
> >>>> On Mon, Jul 12, 2010 at 12:19 PM, Philip A. Prindeville
> >>>> <philipp_subx@redfish-solutions.com> wrote:
> >>>>> On 07/12/2010 09:30 AM, Luis R. Rodriguez wrote:
> >>>>>> On Sun, Jul 11, 2010 at 1:23 PM, Hauke Mehrtens <hauke@hauke-m.de> wrote:
> >>>>>>> suspend and resume are activated in ath5k if CONFIG_PM_SLEEP is set and
> >>>>>>> not if just CONFIG_PM is set.
> >>>>>>>
> >>>>>>> This should fix the problems reported by Philip Prindeville.
> >>>>>>>
> >>>>>>> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
> >>>>>>
> >>>>>> Thanks! Applied and pushed out, at noon we'll have a new tarball with this.
> >>>>>>
> >>>>>>   Luis
> >>>>>
> >>>>> And...
> >>>>>
> >>>>>
> >>>>>  CC [M]  /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.o
> >>>>> /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.c: In function 'l2cap_data_channel':
> >>>>> /home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.c:4352: error: void value not ignored as it ought to be
> >>>>> make[4]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth/l2cap.o] Error 1
> >>>>> make[3]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/bluetooth] Error 2
> >>>>> make[2]: *** [_module_/home/philipp/kernel/build_i586/compat-wireless-2010-07-12] Error 2
> >>>>> make[2]: Leaving directory `/home/philipp/kernel/build_i586/linux-2.6.27.48-astlinux'
> >>>>> make[1]: *** [modules] Error 2
> >>>>> make[1]: Leaving directory `/home/philipp/kernel/build_i586/compat-wireless-2010-07-12'
> >>>>> make: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-12/net/wireless/lib80211.ko] Error 2
> >>>>
> >>>> Thanks for reporting this, I am working on it now.
> >>>
> >>> This is now fixed, I'll push out a new tarball shortly.
> >>>
> >>>   Luis
> >>
> >> That tarball never made it out...  can you please retry?
> > 
> > The cronjob kicks off at noon PST time.
> > 
> >   Luis
> 
> Just picked up the tarball:
> 
> /home/philipp/kernel/build_i586/compat-wireless-2010-07-14/drivers/net/wireless/rt2x00/rt2x00pci.c: In function 'rt2x00pci_initialize':
> /home/philipp/kernel/build_i586/compat-wireless-2010-07-14/drivers/net/wireless/rt2x00/rt2x00pci.c:156: error: implicit declaration of function 'request_threaded_irq'
> make[5]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-14/drivers/net/wireless/rt2x00/rt2x00pci.o] Error 1
> make[4]: *** [/home/philipp/kernel/build_i586/compat-wireless-2010-07-14/drivers/net/wireless/rt2x00] Error 2
> make[4]: *** Waiting for unfinished jobs....
> 
> 
> I'm thinking that it might be good to have a variety of nightly builds to detect damage.  Do you all have infrastructure for that?

Yeah, feel free to send patches against this to enable that:

git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/compat-user.git

Otherwise I'll get to it when I can.

> This is building against 2.6.27.48

Hauke pointed out threaded ISR stuff needs to be done as was done with b43.
 
 Luis

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

end of thread, other threads:[~2010-07-14 20:32 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-11 20:23 [PATCH] compat-wireless: fix build of ath5k for CONFIG_PM_SLEEP=n Hauke Mehrtens
2010-07-12 15:30 ` Luis R. Rodriguez
2010-07-12 19:19   ` Philip A. Prindeville
2010-07-13 21:54     ` Luis R. Rodriguez
2010-07-13 22:44       ` Luis R. Rodriguez
2010-07-14 18:11         ` Philip A. Prindeville
2010-07-14 18:33           ` Luis R. Rodriguez
2010-07-14 19:42             ` Philip A. Prindeville
2010-07-14 20:32               ` Luis R. Rodriguez

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).