Re: BCM4318 (ASUS WL-500gP) hostapd problem

2008-04-06 Thread Artem Antonov
They are working together at last (with current wireless-testing and patches from 20080405-1450) But there is still one more problem: I can't make it work with WPA - there are errors (similar to http://marc.info/?l=linux-wirelessm=120627382928458w=2 ) Also I've noticed that problem happens only

Re: b43: 1 second freeze every 2 minutes - works with bcm43xx

2008-04-06 Thread Julien Muchembled
Pavel Roskin a écrit : If you don't see in in the kernel log, then it's the ssb module that doesn't want to work with your PCI card. Indeed the problem is in ssb: no alias at all. There is a missing option in config.mk I've added the following line and it works: CONFIG_SSB_B43_PCI_BRIDGE=y Now

Re: BCM4318 (ASUS WL-500gP) hostapd problem

2008-04-06 Thread Artem Antonov
I've solved my problem with this patch: diff -urN hostap/hostapd/driver_nl80211.c hostap/hostapd/driver_nl80211.c --- hostap/hostapd/driver_nl80211.c 2008-04-05 09:00:34.0 +0400 +++ hostap/hostapd/driver_nl80211.c 2008-04-06 17:16:35.0 +0400 @@ -1689,7 +1692,8 @@ return; } - if

[PATCH] b43legacy: fix bcm4303 crash

2008-04-06 Thread Stefano Brivio
This fixes an hard crash which happened upon driver loading on bcm4303 rev. 2 devices. Signed-off-by: Stefano Brivio [EMAIL PROTECTED] --- John, this is for 2.6.26. --- diff --git a/drivers/ssb/main.c b/drivers/ssb/main.c index e123719..4bc0e8b 100644 --- a/drivers/ssb/main.c +++

RE: [PATCH RFT V2] b43legacy: Fix TX power adjustments

2008-04-06 Thread David Ellingsworth
Date: Sat, 5 Apr 2008 10:25:00 -0500 From: [EMAIL PROTECTED] To: bcm43xx-dev@lists.berlios.de; [EMAIL PROTECTED] Subject: [PATCH RFT V2] b43legacy: Fix TX power adjustments CC: [EMAIL PROTECTED]; [EMAIL PROTECTED] The calculation of TX power has recently been improved in b43. This patch

[PATCH RFT] b43legacy: fix initvals loading on bcm4303

2008-04-06 Thread Stefano Brivio
This allows for the correct initial values to be uploaded to bcm4303 devices. It should be correct, but I can't reliably test this as I suspect there's something going wrong with an hardware rfkill switch on my laptop. Please test. Signed-off-by: Stefano Brivio [EMAIL PROTECTED] --- Please note

Re: [PATCH] b43legacy: fix bcm4303 crash

2008-04-06 Thread Stefano Brivio
On Sun, 6 Apr 2008 17:20:02 +0200 Michael Buesch [EMAIL PROTECTED] wrote: On Sunday 06 April 2008 17:05:07 Stefano Brivio wrote: This fixes an hard crash which happened upon driver loading on bcm4303 rev. 2 devices. Signed-off-by: Stefano Brivio [EMAIL PROTECTED] ACK --- John,

Re: [PATCH] b43legacy: fix bcm4303 crash

2008-04-06 Thread Larry Finger
Stefano Brivio wrote: This fixes an hard crash which happened upon driver loading on bcm4303 rev. 2 devices. Signed-off-by: Stefano Brivio [EMAIL PROTECTED] --- John, this is for 2.6.26. Shouldn't this be for 2.6.25? Larry ___ Bcm43xx-dev

RE: [PATCH RFT V2] b43legacy: Fix TX power adjustments

2008-04-06 Thread David Ellingsworth
From: [EMAIL PROTECTED] To:[EMAIL PROTECTED] bcm43xx-dev@lists.berlios.de Subject: RE: [PATCH RFT V2] b43legacy: Fix TX power adjustments Date: Sun, 6 Apr 2008 11:14:05 -0400 Date: Sat, 5 Apr 2008 10:25:00 -0500 From: [EMAIL PROTECTED] To: bcm43xx-dev@lists.berlios.de; [EMAIL PROTECTED]

Re: b43: 1 second freeze every 2 minutes - works with bcm43xx

2008-04-06 Thread Dad
Michael: The PIO changes and the rest of the mods work on my CF Broadcom 4318. Thanks to all Tex On Friday 04 April 2008 23:15:39 [EMAIL PROTECTED] wrote: One time my car had a problem and the mechanic said I had to bring it in to get it fixed. I died laughing. What, me bring the car

Re: [PATCH RFT V2] b43legacy: Fix TX power adjustments

2008-04-06 Thread KURT PETERS
Although I found the right phy.c file in the kernel I'm using, I can't ensure I'm making the right changes. For instance, it seems like your refs in b43legacy_phy_xmitpower() is different than in my b43legacy file: max_pwr = dev-dev-bus-sprom.maxpwr_bg; vs max_pwr =

Re: [PATCH RFT V2] b43legacy: Fix TX power adjustments

2008-04-06 Thread Michael Buesch
On Sunday 06 April 2008 22:16:59 KURT PETERS wrote: Although I found the right phy.c file in the kernel I'm using, I can't ensure I'm making the right changes. For instance, it seems like your refs in b43legacy_phy_xmitpower() is different than in my b43legacy file: max_pwr =

Additional problem with b43legacy

2008-04-06 Thread Larry Finger
Stefano and Michael, In order to test Stefano's recent patches for the BCM4303 using b43legacy, I dug out my Linksys WMP11-V27, which has a BCM4301 chip. Implementing it is a pain as it kills my sound card - thus it must be removed before I turn that computer back to my spouse (it runs

Re: b43: 1 second freeze every 2 minutes - works with bcm43xx

2008-04-06 Thread Pavel Roskin
On Sun, 2008-04-06 at 15:51 +0200, Julien Muchembled wrote: Pavel Roskin a écrit : If you don't see in in the kernel log, then it's the ssb module that doesn't want to work with your PCI card. Indeed the problem is in ssb: no alias at all. There is a missing option in config.mk I've