[ath9k-devel] [PATCH 2/2] ath9k: Run the LNA combining algorithm properly

2013-08-07 Thread Sujith Manoharan
From: Sujith Manoharan c_man...@qca.qualcomm.com The LNA combining algorithm has to be run for cards that support the required diversity features, make sure that that correct conditions are met before enabing this algorithm. Signed-off-by: Sujith Manoharan c_man...@qca.qualcomm.com ---

[ath9k-devel] [PATCH 0/2] Antenna diversity fixes

2013-08-07 Thread Sujith Manoharan
From: Sujith Manoharan c_man...@qca.qualcomm.com Hi, Antenna diversity support for WLAN/BT combo cards WB195 and WB225 is fairly complete. WB335, which is based on AR9565 requires more fixes. More information is here: http://wireless.kernel.org/en/users/Drivers/ath9k/antennadiversity Sujith

[ath9k-devel] [PATCH 1/2] ath9k: Fix BTCOEX usage for RX diversity

2013-08-07 Thread Sujith Manoharan
From: Sujith Manoharan c_man...@qca.qualcomm.com BTCOEX has to be *disabled* for WLAN RX diversity to work on combo cards. Signed-off-by: Sujith Manoharan c_man...@qca.qualcomm.com --- drivers/net/wireless/ath/ath9k/init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [ath9k-devel] [PATCH 2/2] ath9k: Run the LNA combining algorithm properly

2013-08-07 Thread Felix Fietkau
On 2013-08-07 8:59 AM, Sujith Manoharan wrote: From: Sujith Manoharan c_man...@qca.qualcomm.com The LNA combining algorithm has to be run for cards that support the required diversity features, make sure that that correct conditions are met before enabing this algorithm. Signed-off-by:

Re: [ath9k-devel] [PATCH 2/2] ath9k: Run the LNA combining algorithm properly

2013-08-07 Thread Sujith Manoharan
Felix Fietkau wrote: - struct ath_hw *ah = sc-sc_ah; + struct ath_hw *ah = sc-sc_ah +; struct ath9k_hw_capabilities *pCap = ah-caps; struct ath_common *common = ath9k_hw_common(ah); struct ieee80211_hw *hw = sc-hw; struct ieee80211_hdr *hdr; Misplaced semicolon

[ath9k-devel] [PATCH v2 2/2] ath9k: Run the LNA combining algorithm properly

2013-08-07 Thread Sujith Manoharan
From: Sujith Manoharan c_man...@qca.qualcomm.com The LNA combining algorithm has to be run for cards that support the required diversity features, make sure that that correct conditions are met before enabing this algorithm. Signed-off-by: Sujith Manoharan c_man...@qca.qualcomm.com --- v2 : Fix