Re: b43/b43legacy driver

2010-02-09 Thread Peter Stuge
Daniel Kuehn wrote: There is an option in gmail to tell it to send the mails as plain-text too. That is what I use, Good point - important to post plain text. I think another point which is also really important is to EXTENSIVELY TRIM messages that you reply to. It is quite common that Gmail

Re: b43legacy-phy3: Radio hardware status changed to XXX

2010-02-09 Thread Peter Stuge
Larry Finger wrote: There could be a bug in the software that processes whatever WMI info that your system generates. WMI (Windows Management Interface) code handles the functions of the top row of your keyboard that are generated by a fn+FX key. The BIOS is rarely if ever involved in any of

[PATCH 01/11] b43: N-PHY: add some registers and structs definitions

2010-02-09 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/b43.h |1 + drivers/net/wireless/b43/phy_n.h |9 + drivers/net/wireless/b43/tables_nphy.h |9 + 3 files changed, 19 insertions(+), 0 deletions(-) diff --git

[PATCH 05/11] b43: N-PHY: update post init of 2055 radio

2010-02-09 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_n.c | 61 + 1 files changed, 35 insertions(+), 26 deletions(-) diff --git a/drivers/net/wireless/b43/phy_n.c b/drivers/net/wireless/b43/phy_n.c index ebb9632..2f45817 100644 ---

[PATCH 06/11] b43: N-PHY: switch to chanspec struct

2010-02-09 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_n.c | 45 + drivers/net/wireless/b43/phy_n.h | 11 + 2 files changed, 36 insertions(+), 20 deletions(-) diff --git a/drivers/net/wireless/b43/phy_n.c

[PATCH 07/11] b43: N-PHY: adjust gain table

2010-02-09 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_n.c | 58 +- 1 files changed, 57 insertions(+), 1 deletions(-) diff --git a/drivers/net/wireless/b43/phy_n.c b/drivers/net/wireless/b43/phy_n.c index 4ff09b8..835d0da 100644 ---

[PATCH 08/11] b43: implement writing to MMIO shared memory

2010-02-09 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_common.c | 11 +++ drivers/net/wireless/b43/phy_common.h |2 ++ 2 files changed, 13 insertions(+), 0 deletions(-) diff --git a/drivers/net/wireless/b43/phy_common.c

[PATCH 09/11] b43: N-PHY: isloate 2055 radio setup

2010-02-09 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_n.c | 24 ++-- 1 files changed, 18 insertions(+), 6 deletions(-) diff --git a/drivers/net/wireless/b43/phy_n.c b/drivers/net/wireless/b43/phy_n.c index 835d0da..631e01f 100644 ---

[PATCH 10/11] b43: N-PHY: implement chanspec setup

2010-02-09 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_n.c | 62 ++ 1 files changed, 62 insertions(+), 0 deletions(-) diff --git a/drivers/net/wireless/b43/phy_n.c b/drivers/net/wireless/b43/phy_n.c index 631e01f..19d4f11 100644 ---

[PATCH 11/11] b43: N-PHY: switch to chanspec ops

2010-02-09 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_n.c | 87 +++--- drivers/net/wireless/b43/phy_n.h |1 + 2 files changed, 63 insertions(+), 25 deletions(-) diff --git a/drivers/net/wireless/b43/phy_n.c

Re: [PATCH 11/11] b43: N-PHY: switch to chanspec ops

2010-02-09 Thread Larry Finger
On 02/09/2010 02:04 PM, Rafał Miłecki wrote: Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_n.c | 87 +++--- drivers/net/wireless/b43/phy_n.h |1 + 2 files changed, 63 insertions(+), 25 deletions(-) diff --git

Re: [PATCH 08/11] b43: implement writing to MMIO shared memory

2010-02-09 Thread Michael Buesch
On Tuesday 09 February 2010 21:04:40 Rafał Miłecki wrote: Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_common.c | 11 +++ drivers/net/wireless/b43/phy_common.h |2 ++ 2 files changed, 13 insertions(+), 0 deletions(-) diff --git

Re: [PATCH 09/11] b43: N-PHY: isloate 2055 radio setup

2010-02-09 Thread Michael Buesch
On Tuesday 09 February 2010 21:04:41 Rafał Miłecki wrote: Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_n.c | 24 ++-- 1 files changed, 18 insertions(+), 6 deletions(-) diff --git a/drivers/net/wireless/b43/phy_n.c

Re: [PATCH 01/11] b43: N-PHY: add some registers and structs definitions

2010-02-09 Thread Michael Buesch
On Tuesday 09 February 2010 21:04:33 Rafał Miłecki wrote: +#define B43_MMIO_PSM_PHY_HDR 0x492 /* programmable state machine */ The comment doesn't make a lot of sense. In case you don't know, the PSM is the part of the hardware that executes the firmware. -- Greetings, Michael.