mt76: mt7915: rename mt7915_mcu_get_rate_info to mt7915_mcu_get_tx_rate
Avoid confusion with rx rate query function. Signed-off-by: Ryder Lee <ryder.lee@mediatek.com> Signed-off-by: Shayne Chen <shayne.chen@mediatek.com> Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
4051308695
commit
e4c5ead632
@ -1422,7 +1422,7 @@ mt7915_mac_sta_stats_work(struct mt7915_phy *phy)
|
||||
spin_unlock_bh(&dev->sta_poll_lock);
|
||||
|
||||
/* use MT_TX_FREE_RATE to report Tx rate for further devices */
|
||||
mt7915_mcu_get_rate_info(dev, RATE_CTRL_RU_INFO, msta->wcid.idx);
|
||||
mt7915_mcu_get_tx_rate(dev, RATE_CTRL_RU_INFO, msta->wcid.idx);
|
||||
|
||||
spin_lock_bh(&dev->sta_poll_lock);
|
||||
}
|
||||
|
@ -352,8 +352,8 @@ mt7915_mcu_rx_radar_detected(struct mt7915_dev *dev, struct sk_buff *skb)
|
||||
}
|
||||
|
||||
static void
|
||||
mt7915_mcu_tx_rate_cal(struct mt76_phy *mphy, struct mt7915_mcu_ra_info *ra,
|
||||
struct rate_info *rate, u16 r)
|
||||
mt7915_mcu_tx_rate_parse(struct mt76_phy *mphy, struct mt7915_mcu_ra_info *ra,
|
||||
struct rate_info *rate, u16 r)
|
||||
{
|
||||
struct ieee80211_supported_band *sband;
|
||||
u16 ru_idx = le16_to_cpu(ra->ru_idx);
|
||||
@ -465,11 +465,11 @@ mt7915_mcu_tx_rate_report(struct mt7915_dev *dev, struct sk_buff *skb)
|
||||
mphy = dev->mt76.phy2;
|
||||
|
||||
/* current rate */
|
||||
mt7915_mcu_tx_rate_cal(mphy, ra, &rate, curr);
|
||||
mt7915_mcu_tx_rate_parse(mphy, ra, &rate, curr);
|
||||
stats->tx_rate = rate;
|
||||
|
||||
/* probing rate */
|
||||
mt7915_mcu_tx_rate_cal(mphy, ra, &prob_rate, probe);
|
||||
mt7915_mcu_tx_rate_parse(mphy, ra, &prob_rate, probe);
|
||||
stats->prob_rate = prob_rate;
|
||||
|
||||
if (attempts) {
|
||||
@ -3260,7 +3260,7 @@ int mt7915_mcu_get_temperature(struct mt7915_dev *dev, int index)
|
||||
sizeof(req), true);
|
||||
}
|
||||
|
||||
int mt7915_mcu_get_rate_info(struct mt7915_dev *dev, u32 cmd, u16 wlan_idx)
|
||||
int mt7915_mcu_get_tx_rate(struct mt7915_dev *dev, u32 cmd, u16 wlan_idx)
|
||||
{
|
||||
struct {
|
||||
__le32 cmd;
|
||||
|
@ -319,8 +319,8 @@ int mt7915_mcu_set_pulse_th(struct mt7915_dev *dev,
|
||||
const struct mt7915_dfs_pulse *pulse);
|
||||
int mt7915_mcu_set_radar_th(struct mt7915_dev *dev, int index,
|
||||
const struct mt7915_dfs_pattern *pattern);
|
||||
int mt7915_mcu_get_rate_info(struct mt7915_dev *dev, u32 cmd, u16 wlan_idx);
|
||||
int mt7915_mcu_get_temperature(struct mt7915_dev *dev, int index);
|
||||
int mt7915_mcu_get_tx_rate(struct mt7915_dev *dev, u32 cmd, u16 wlan_idx);
|
||||
int mt7915_mcu_get_rx_rate(struct mt7915_phy *phy, struct ieee80211_vif *vif,
|
||||
struct ieee80211_sta *sta, struct rate_info *rate);
|
||||
int mt7915_mcu_rdd_cmd(struct mt7915_dev *dev, enum mt7915_rdd_cmd cmd,
|
||||
|
Loading…
Reference in New Issue
Block a user