]> Pileus Git - ~andy/linux/commitdiff
iwlwifi: mvm: rs: rename thresholds defines
authorEyal Shapira <eyal@wizery.com>
Wed, 20 Nov 2013 23:18:47 +0000 (01:18 +0200)
committerEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Mon, 9 Dec 2013 20:29:47 +0000 (22:29 +0200)
Rename for clearer names.

Signed-off-by: Eyal Shapira <eyal@wizery.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
drivers/net/wireless/iwlwifi/mvm/rs.c
drivers/net/wireless/iwlwifi/mvm/rs.h

index 882ecd30cf560e39213f42a72ee46bf6dd0d56e6..a289b774ba6b71ca83d5391a6aa3ed8bd4dc90cd 100644 (file)
@@ -1107,7 +1107,7 @@ static s32 rs_get_best_rate(struct iwl_mvm *mvm,
                 *    "active" throughput (under perfect conditions).
                 */
                if ((((100 * tpt_tbl[rate]) > lq_sta->last_tpt) &&
-                    ((active_sr > IWL_RATE_DECREASE_TH) &&
+                    ((active_sr > RS_SR_FORCE_DECREASE) &&
                      (active_sr <= IWL_RATE_HIGH_TH) &&
                      (tpt_tbl[rate] <= active_tpt))) ||
                    ((active_sr >= IWL_RATE_SCALE_SWITCH) &&
@@ -1928,7 +1928,7 @@ static void rs_rate_scale_perform(struct iwl_mvm *mvm,
        scale_action = 0;
 
        /* Too many failures, decrease rate */
-       if ((sr <= IWL_RATE_DECREASE_TH) || (current_tpt == 0)) {
+       if ((sr <= RS_SR_FORCE_DECREASE) || (current_tpt == 0)) {
                IWL_DEBUG_RATE(mvm,
                               "decrease rate because of low SR\n");
                scale_action = -1;
index 5dd30eace42b87b696daf3eaa873257e7e9f7c83..e5d448c0d1af07881193d77183e8c58f9a4bc8fd 100644 (file)
@@ -155,7 +155,7 @@ enum {
 #define IWL_RATE_SCALE_SWITCH          10880   /*  85% */
 #define IWL_RATE_HIGH_TH               10880   /*  85% */
 #define IWL_RATE_INCREASE_TH           6400    /*  50% */
-#define IWL_RATE_DECREASE_TH           1920    /*  15% */
+#define RS_SR_FORCE_DECREASE           1920    /*  15% */
 
 /* possible actions when in legacy mode */
 enum {