mt7921_sta_stats is no longer needed
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
        if (sta) {
                struct mt7921_sta *msta = (struct mt7921_sta *)sta->drv_priv;
 
-               if (time_after(jiffies, msta->stats.jiffies + HZ / 4)) {
+               if (time_after(jiffies, msta->last_txs + HZ / 4)) {
                        info->flags |= IEEE80211_TX_CTL_REQ_TX_STATUS;
-                       msta->stats.jiffies = jiffies;
+                       msta->last_txs = jiffies;
                }
        }
 
 
        msta->wcid.idx = idx;
        msta->wcid.ext_phy = mvif->mt76.band_idx;
        msta->wcid.tx_info |= MT_WCID_TX_INFO_SET;
-       msta->stats.jiffies = jiffies;
+       msta->last_txs = jiffies;
 
        ret = mt76_connac_pm_wake(&dev->mphy, &dev->pm);
        if (ret)
 
        MT7921_RXQ_MCU_WM = 0,
 };
 
-struct mt7921_sta_stats {
-       struct rate_info prob_rate;
-       struct rate_info tx_rate;
-
-       unsigned long per;
-       unsigned long changed;
-       unsigned long jiffies;
-};
-
 struct mt7921_sta_key_conf {
        s8 keyidx;
        u8 key[16];
        struct list_head poll_list;
        u32 airtime_ac[8];
 
-       struct mt7921_sta_stats stats;
-
+       unsigned long last_txs;
        unsigned long ampdu_state;
 
        struct mt7921_sta_key_conf bip;