Commit cfadd9ba authored by Janusz Dziedzic's avatar Janusz Dziedzic Committed by Kalle Valo

ath10k: rename process_rx_rates to ath10k_htt_rx_h_rates

No functional changes.
Signed-off-by: default avatarJanusz Dziedzic <janusz.dziedzic@tieto.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 73539b40
...@@ -655,9 +655,9 @@ static const u8 rx_legacy_rate_idx[] = { ...@@ -655,9 +655,9 @@ static const u8 rx_legacy_rate_idx[] = {
5, /* 0x0F - 9Mbps */ 5, /* 0x0F - 9Mbps */
}; };
static void process_rx_rates(struct ath10k *ar, struct htt_rx_info *info, static void ath10k_htt_rx_h_rates(struct ath10k *ar, struct htt_rx_info *info,
enum ieee80211_band band, enum ieee80211_band band,
struct ieee80211_rx_status *status) struct ieee80211_rx_status *status)
{ {
u8 cck, rate, rate_idx, bw, sgi, mcs, nss; u8 cck, rate, rate_idx, bw, sgi, mcs, nss;
u8 info0 = info->rate.info0; u8 info0 = info->rate.info0;
...@@ -789,7 +789,7 @@ static void ath10k_process_rx(struct ath10k *ar, struct htt_rx_info *info) ...@@ -789,7 +789,7 @@ static void ath10k_process_rx(struct ath10k *ar, struct htt_rx_info *info)
return; return;
} }
process_rx_rates(ar, info, ch->band, status); ath10k_htt_rx_h_rates(ar, info, ch->band, status);
status->band = ch->band; status->band = ch->band;
status->freq = ch->center_freq; status->freq = ch->center_freq;
......
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