Re: [ath5k-devel] [PATCH 3/5] ath5k: Add missing breaks in switch/case

2011-07-11 Thread Pavel Roskin
On 07/10/2011 05:28 AM, Joe Perches wrote: Signed-off-by: Joe Perchesj...@perches.com Acked-by: Pavel Roskin pro...@gnu.org --- drivers/net/wireless/ath/ath5k/desc.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/net/wireless/ath/ath5k/desc.c

Re: [ath5k-devel] [PATCH v2 1/8] ath5k: add missing checks for rfgain probe

2011-07-11 Thread John W. Linville
On Tue, Jul 05, 2011 at 11:48:08AM +0700, Felix Fietkau wrote: On 2011-07-05 11:46 AM, Nick Kossifidis wrote: 2011/7/5 Felix Fietkaun...@openwrt.org: rfgain probe is only necessary for OFDM operation on AR5111 and AR5112. Signed-off-by: Felix Fietkaun...@openwrt.org ---

Re: [ath5k-devel] [PATCH 3/5] ath5k: Add missing breaks in switch/case

2011-07-11 Thread Nick Kossifidis
2011/7/10 Joe Perches j...@perches.com: Signed-off-by: Joe Perches j...@perches.com ---  drivers/net/wireless/ath/ath5k/desc.c |    3 +++  1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/net/wireless/ath/ath5k/desc.c b/drivers/net/wireless/ath/ath5k/desc.c index

[ath5k-devel] [PATCH v3 2/8] ath5k: apply the synth voltage tweak only on AR5112 rev 2

2011-07-11 Thread Felix Fietkau
Might fix some stability issues on newer chips Signed-off-by: Felix Fietkau n...@openwrt.org Acked-by: Nick Kossifidis mickfl...@gmail.com --- drivers/net/wireless/ath/ath5k/phy.c | 19 +++ 1 files changed, 11 insertions(+), 8 deletions(-) diff --git

[ath5k-devel] [PATCH v3 3/8] ath5k: fix reference clock frequency for spur mitigation on AR2413

2011-07-11 Thread Felix Fietkau
AR2413 uses the same reference clock as AR5413 Signed-off-by: Felix Fietkau n...@openwrt.org --- drivers/net/wireless/ath/ath5k/phy.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/net/wireless/ath/ath5k/phy.c b/drivers/net/wireless/ath/ath5k/phy.c index

[ath5k-devel] [PATCH v3 1/8] ath5k: add missing checks for rfgain probe

2011-07-11 Thread Felix Fietkau
rfgain probe is only necessary for OFDM operation on AR5111 and AR5112. Signed-off-by: Felix Fietkau n...@openwrt.org --- drivers/net/wireless/ath/ath5k/phy.c | 10 ++ 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/drivers/net/wireless/ath/ath5k/phy.c

[ath5k-devel] [PATCH v3 7/8] ath5k: disable 32KHz sleep clock operation by default

2011-07-11 Thread Felix Fietkau
While 32 KHz sleep clock might provide some power saving benefits, it is also a major source of stability issues, on OpenWrt it produced some reproducible data bus errors on register accesses on several different MIPS platforms. All the Atheros drivers that I can find do not enable this feature,

[ath5k-devel] [PATCH v3 6/8] ath5k: fix reference clock usec duration setting restore

2011-07-11 Thread Felix Fietkau
enabling the sleep clock alters the AR5K_USEC_32 field, but disabling it didn't restore it. Signed-off-by: Felix Fietkau n...@openwrt.org Acked-by: Nick Kossifidis mickfl...@gmail.com --- drivers/net/wireless/ath/ath5k/reset.c | 12 +++- 1 files changed, 11 insertions(+), 1

[ath5k-devel] [PATCH v3 4/8] ath5k: initialize common-clockrate

2011-07-11 Thread Felix Fietkau
Fixes a division by zero when setting distance before activating the device for the first time. Signed-off-by: Felix Fietkau n...@openwrt.org Acked-by: Nick Kossifidis mickfl...@gmail.com --- drivers/net/wireless/ath/ath5k/base.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff

[ath5k-devel] [PATCH v3 5/8] ath5k: delay full calibration after reset

2011-07-11 Thread Felix Fietkau
During scans the full calibration usually does not make much sense, PAPD probing and IQ calibration should be deferred until there is enough time to complete them. Adding 100 ms to the initial full calibration delay should be enough to do this. Signed-off-by: Felix Fietkau n...@openwrt.org