Commit c4130465 authored by Vasanthakumar Thiagarajan's avatar Vasanthakumar Thiagarajan Committed by John W. Linville

ath9k: Use probe interval instead of rssi reduce interval

Get rid of rssi reduce interval.
Signed-off-by: default avatarVasanthakumar Thiagarajan <vasanth@atheros.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent ddf4a2db
...@@ -148,7 +148,6 @@ static const struct ath_rate_table ar5416_11na_ratetable = { ...@@ -148,7 +148,6 @@ static const struct ath_rate_table ar5416_11na_ratetable = {
4, 23, 40, 41, 41, 148400 }, 4, 23, 40, 41, 41, 148400 },
}, },
50, /* probe interval */ 50, /* probe interval */
50, /* rssi reduce interval */
WLAN_RC_HT_FLAG, /* Phy rates allowed initially */ WLAN_RC_HT_FLAG, /* Phy rates allowed initially */
}; };
...@@ -298,7 +297,6 @@ static const struct ath_rate_table ar5416_11ng_ratetable = { ...@@ -298,7 +297,6 @@ static const struct ath_rate_table ar5416_11ng_ratetable = {
8, 27, 44, 45, 45, 148400 }, 8, 27, 44, 45, 45, 148400 },
}, },
50, /* probe interval */ 50, /* probe interval */
50, /* rssi reduce interval */
WLAN_RC_HT_FLAG, /* Phy rates allowed initially */ WLAN_RC_HT_FLAG, /* Phy rates allowed initially */
}; };
...@@ -331,7 +329,6 @@ static const struct ath_rate_table ar5416_11a_ratetable = { ...@@ -331,7 +329,6 @@ static const struct ath_rate_table ar5416_11a_ratetable = {
4, 7, 0 }, 4, 7, 0 },
}, },
50, /* probe interval */ 50, /* probe interval */
50, /* rssi reduce interval */
0, /* Phy rates allowed initially */ 0, /* Phy rates allowed initially */
}; };
...@@ -376,7 +373,6 @@ static const struct ath_rate_table ar5416_11g_ratetable = { ...@@ -376,7 +373,6 @@ static const struct ath_rate_table ar5416_11g_ratetable = {
8, 11, 0 }, 8, 11, 0 },
}, },
50, /* probe interval */ 50, /* probe interval */
50, /* rssi reduce interval */
0, /* Phy rates allowed initially */ 0, /* Phy rates allowed initially */
}; };
...@@ -1070,7 +1066,7 @@ static void ath_rc_update_ht(struct ath_softc *sc, ...@@ -1070,7 +1066,7 @@ static void ath_rc_update_ht(struct ath_softc *sc,
/* Every so often, we reduce the thresholds /* Every so often, we reduce the thresholds
* and PER (different for CCK and OFDM). */ * and PER (different for CCK and OFDM). */
if (now_msec - ath_rc_priv->per_down_time >= if (now_msec - ath_rc_priv->per_down_time >=
rate_table->rssi_reduce_interval) { rate_table->probe_interval) {
for (rate = 0; rate < size; rate++) { for (rate = 0; rate < size; rate++) {
ath_rc_priv->state[rate].per = ath_rc_priv->state[rate].per =
7 * ath_rc_priv->state[rate].per / 8; 7 * ath_rc_priv->state[rate].per / 8;
......
...@@ -119,7 +119,6 @@ struct ath_rate_table { ...@@ -119,7 +119,6 @@ struct ath_rate_table {
u32 max_4ms_framelen; u32 max_4ms_framelen;
} info[RATE_TABLE_SIZE]; } info[RATE_TABLE_SIZE];
u32 probe_interval; u32 probe_interval;
u32 rssi_reduce_interval;
u8 initial_ratemax; u8 initial_ratemax;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment