OSDN Git Service

ath10k: enable Adaptive Noise Immunity (ANI) by default
authorAshok Raj Nagarajan <arnagara@qti.qualcomm.com>
Thu, 19 Mar 2015 11:07:59 +0000 (16:37 +0530)
committerKalle Valo <kvalo@qca.qualcomm.com>
Mon, 23 Mar 2015 15:20:21 +0000 (17:20 +0200)
ANI helps to improve connectvity and performance in a noisy environment.
Enabling this feature would help the user experience a better and stable
wireless connection in a noisy environmnet. This feature is currently not
enabled for ath10k. Enable this feature by default.

Signed-off-by: Ashok Raj Nagarajan <arnagara@qti.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
drivers/net/wireless/ath/ath10k/mac.c

index 6299166..76a9bed 100644 (file)
@@ -3153,6 +3153,14 @@ static int ath10k_start(struct ieee80211_hw *hw)
                goto err_core_stop;
        }
 
+       ret = ath10k_wmi_pdev_set_param(ar,
+                                       ar->wmi.pdev_param->ani_enable, 1);
+       if (ret) {
+               ath10k_warn(ar, "failed to enable ani by default: %d\n",
+                           ret);
+               goto err_core_stop;
+       }
+
        ar->num_started_vdevs = 0;
        ath10k_regd_update(ar);