Skip to content

Commit

Permalink
wifi: mt76: mt7615: rely on mt7615_phy in mt7615_mac_reset_counters
Browse files Browse the repository at this point in the history
This is a preliminary patch to move aggr_stats array in mt76_phy
structure.

Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
  • Loading branch information
LorenzoBianconi authored and nbd168 committed Nov 11, 2022
1 parent 242fece commit 75003c6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
8 changes: 3 additions & 5 deletions mt7615/mac.c
Expand Up @@ -107,9 +107,9 @@ static struct mt76_wcid *mt7615_rx_get_wcid(struct mt7615_dev *dev,
return &sta->vif->sta.wcid;
}

void mt7615_mac_reset_counters(struct mt7615_dev *dev)
void mt7615_mac_reset_counters(struct mt7615_phy *phy)
{
struct mt76_phy *mphy_ext = dev->mt76.phys[MT_BAND1];
struct mt7615_dev *dev = phy->dev;
int i;

for (i = 0; i < 4; i++) {
Expand All @@ -118,9 +118,7 @@ void mt7615_mac_reset_counters(struct mt7615_dev *dev)
}

memset(dev->mt76.aggr_stats, 0, sizeof(dev->mt76.aggr_stats));
dev->mt76.phy.survey_time = ktime_get_boottime();
if (mphy_ext)
mphy_ext->survey_time = ktime_get_boottime();
phy->mt76->survey_time = ktime_get_boottime();

/* reset airtime counters */
mt76_rr(dev, MT_MIB_SDR9(0));
Expand Down
4 changes: 2 additions & 2 deletions mt7615/main.c
Expand Up @@ -83,7 +83,7 @@ static int mt7615_start(struct ieee80211_hw *hw)
ieee80211_queue_delayed_work(hw, &phy->mt76->mac_work, timeout);

if (!running)
mt7615_mac_reset_counters(dev);
mt7615_mac_reset_counters(phy);

out:
mt7615_mutex_release(dev);
Expand Down Expand Up @@ -320,7 +320,7 @@ int mt7615_set_channel(struct mt7615_phy *phy)
if (ret)
goto out;

mt7615_mac_reset_counters(dev);
mt7615_mac_reset_counters(phy);
phy->noise = 0;
phy->chfreq = mt76_rr(dev, MT_CHFREQ(ext_phy));

Expand Down
2 changes: 1 addition & 1 deletion mt7615/mt7615.h
Expand Up @@ -469,7 +469,7 @@ void mt7615_init_work(struct mt7615_dev *dev);
int mt7615_mcu_restart(struct mt76_dev *dev);
void mt7615_update_channel(struct mt76_phy *mphy);
bool mt7615_mac_wtbl_update(struct mt7615_dev *dev, int idx, u32 mask);
void mt7615_mac_reset_counters(struct mt7615_dev *dev);
void mt7615_mac_reset_counters(struct mt7615_phy *phy);
void mt7615_mac_cca_stats_reset(struct mt7615_phy *phy);
void mt7615_mac_set_scs(struct mt7615_phy *phy, bool enable);
void mt7615_mac_enable_nf(struct mt7615_dev *dev, bool ext_phy);
Expand Down

0 comments on commit 75003c6

Please sign in to comment.