Re: [RFC] How to store HT (40MHz) support

2010-01-21 Thread Rafał Miłecki
W dniu 20 stycznia 2010 11:18 użytkownik Johannes Berg johan...@sipsolutions.net napisał: On Wed, 2010-01-20 at 01:06 +0100, Rafał Miłecki wrote: +             phy-use_40mhz = conf_is_ht(conf); This is wrong, conf_is_ht might also be 20mhz, look at the other helpers. I tried to understand

Re: [RFC] How to store HT (40MHz) support

2010-01-21 Thread Luis R. Rodriguez
2010/1/21 Rafał Miłecki zaj...@gmail.com: W dniu 20 stycznia 2010 11:18 użytkownik Johannes Berg johan...@sipsolutions.net napisał: On Wed, 2010-01-20 at 01:06 +0100, Rafał Miłecki wrote: +             phy-use_40mhz = conf_is_ht(conf); This is wrong, conf_is_ht might also be 20mhz, look at

14e4:4315, 802.11w support?

2010-01-21 Thread Eric Branson
What is the current state of b43 support for the 14e4:4315 card (I think rev 01...), and 802.11w support for the same? -- Eric ___ Bcm43xx-dev mailing list Bcm43xx-dev@lists.berlios.de https://lists.berlios.de/mailman/listinfo/bcm43xx-dev

Re: 14e4:4315, 802.11w support?

2010-01-21 Thread Rafał Miłecki
2010/1/21 Eric Branson brans...@ecs.csus.edu: What is the current state of b43 support for the 14e4:4315 card (I think rev 01...), and 802.11w support for the same? 14e4:4315 is supported, just without calibration yet. See http://wireless.kernel.org/en/users/Drivers/b43 I think we already

Re: 14e4:4315, 802.11w support?

2010-01-21 Thread Eric Branson
- Rafał Miłecki zaj...@gmail.com wrote: As for 802.11w is this available for all standards? Or just 802.11n? As per the standard, the amendment is based on IEEE Std 802.11-2007, as amended by IEEE Std 802.11k-2008, IEEE Std 802.11r-2008, and IEEE Std 802.11y-2008. 802.11w is implemented

Re: 14e4:4315, 802.11w support?

2010-01-21 Thread Rafał Miłecki
2010/1/21 Eric Branson brans...@ecs.csus.edu: - Rafał Miłecki zaj...@gmail.com wrote: As for 802.11w is this available for all standards? Or just 802.11n? As per the standard, the amendment is based on IEEE Std 802.11-2007, as amended by IEEE Std 802.11k-2008, IEEE Std 802.11r-2008, and

[PATCH 0/5] b43: more N-PHY stuff

2010-01-21 Thread Rafał Miłecki
John, I hope to have patch submission fixed, please let me know if there is anything wrong still. Rafał Miłecki (5): b43: check band width b43: N-PHY: implement overriding RF control b43: N-PHY: add running samples b43: N-PHY: add setting power amplifier filters b43: N-PHY: add TX tone

[PATCH 1/5] b43: check band width

2010-01-21 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/main.c |6 ++ drivers/net/wireless/b43/phy_common.h |3 +++ drivers/net/wireless/b43/phy_n.c |2 +- 3 files changed, 10 insertions(+), 1 deletions(-) diff --git a/drivers/net/wireless/b43/main.c

[PATCH 2/5] b43: N-PHY: implement overriding RF control

2010-01-21 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_n.c | 82 ++- drivers/net/wireless/b43/tables_nphy.c | 37 ++ drivers/net/wireless/b43/tables_nphy.h | 21 3 files changed, 137 insertions(+), 3 deletions(-)

[PATCH 4/5] b43: N-PHY: add setting power amplifier filters

2010-01-21 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_n.c | 41 ++- drivers/net/wireless/b43/tables_nphy.c | 24 ++ drivers/net/wireless/b43/tables_nphy.h |1 + 3 files changed, 64 insertions(+), 2 deletions(-)

[PATCH 3/5] b43: N-PHY: add running samples

2010-01-21 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_n.c | 68 +++-- 1 files changed, 64 insertions(+), 4 deletions(-) diff --git a/drivers/net/wireless/b43/phy_n.c b/drivers/net/wireless/b43/phy_n.c index d3c9783..f5900f0 100644 ---

[PATCH 5/5] b43: N-PHY: add TX tone

2010-01-21 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_n.c | 60 ++--- 1 files changed, 55 insertions(+), 5 deletions(-) diff --git a/drivers/net/wireless/b43/phy_n.c b/drivers/net/wireless/b43/phy_n.c index 97a44e4..a45a1f3 100644 ---