diff options
author | Larry Finger <Larry.Finger@lwfinger.net> | 2014-12-18 04:05:40 -0500 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2014-12-24 11:34:29 -0500 |
commit | fd3cb22ad87fd53eb47dc64fd0cafd665d4124a1 (patch) | |
tree | 5a07aa8ff9aa82abbc11d7469ddf58f3e9df1879 /drivers/net/wireless/rtlwifi/rtl8192se | |
parent | a160ba06c1bde5e0609f7ac475a9650224337933 (diff) |
rtlwifi: rtl8821ae: Switch to use common rate control routine
With this change, all of the drivers now use the common routine. As this
driver has VHT capability, an additional parameter is needed, thus all the
drivers had to be modified.
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless/rtlwifi/rtl8192se')
-rw-r--r-- | drivers/net/wireless/rtlwifi/rtl8192se/trx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/rtlwifi/rtl8192se/trx.c b/drivers/net/wireless/rtlwifi/rtl8192se/trx.c index 95eebff4f558..125b29bd2f93 100644 --- a/drivers/net/wireless/rtlwifi/rtl8192se/trx.c +++ b/drivers/net/wireless/rtlwifi/rtl8192se/trx.c | |||
@@ -319,7 +319,7 @@ bool rtl92se_rx_query_desc(struct ieee80211_hw *hw, struct rtl_stats *stats, | |||
319 | } | 319 | } |
320 | 320 | ||
321 | rx_status->rate_idx = rtlwifi_rate_mapping(hw, stats->is_ht, | 321 | rx_status->rate_idx = rtlwifi_rate_mapping(hw, stats->is_ht, |
322 | stats->rate); | 322 | false, stats->rate); |
323 | 323 | ||
324 | rx_status->mactime = stats->timestamp_low; | 324 | rx_status->mactime = stats->timestamp_low; |
325 | if (phystatus) { | 325 | if (phystatus) { |