return width_to_bw[chandef->width];
 }
 
+static inline u8 mt76_connac_lmac_mapping(u8 ac)
+{
+       /* LMAC uses the reverse order of mac80211 AC indexes */
+       return 3 - ac;
+}
+
 int mt76_connac_pm_wake(struct mt76_phy *phy, struct mt76_connac_pm *pm);
 void mt76_connac_power_save_sched(struct mt76_phy *phy,
                                  struct mt76_connac_pm *pm);
 
                sta = container_of((void *)msta, struct ieee80211_sta,
                                   drv_priv);
                for (i = 0; i < IEEE80211_NUM_ACS; i++) {
-                       u8 q = mt7915_lmac_mapping(dev, i);
+                       u8 q = mt76_connac_lmac_mapping(i);
                        u32 tx_cur = tx_time[q];
                        u32 rx_cur = rx_time[q];
                        u8 tid = ac_to_tid[i];
        } else {
                p_fmt = MT_TX_TYPE_CT;
                q_idx = wmm_idx * MT7915_MAX_WMM_SETS +
-                       mt7915_lmac_mapping(dev, skb_get_queue_mapping(skb));
+                       mt76_connac_lmac_mapping(skb_get_queue_mapping(skb));
        }
 
        val = FIELD_PREP(MT_TXD0_TX_BYTES, skb->len + MT_TXD_SIZE) |
 
 mt7915_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif, u16 queue,
               const struct ieee80211_tx_queue_params *params)
 {
-       struct mt7915_dev *dev = mt7915_hw_dev(hw);
        struct mt7915_vif *mvif = (struct mt7915_vif *)vif->drv_priv;
 
        /* no need to update right away, we'll get BSS_CHANGED_QOS */
-       queue = mt7915_lmac_mapping(dev, queue);
+       queue = mt76_connac_lmac_mapping(queue);
        mvif->queue_params[queue] = *params;
 
        return 0;
 
        return phy->priv;
 }
 
-static inline u8 mt7915_lmac_mapping(struct mt7915_dev *dev, u8 ac)
-{
-       /* LMAC uses the reverse order of mac80211 AC indexes */
-       return 3 - ac;
-}
-
 extern const struct ieee80211_ops mt7915_ops;
 extern const struct mt76_testmode_ops mt7915_testmode_ops;
 extern struct pci_driver mt7915_pci_driver;
 
        mt7915_tm_set_slot_time(phy, slot_time, sifs);
 
        return mt7915_tm_set_wmm_qid(dev,
-                                    mt7915_lmac_mapping(dev, IEEE80211_AC_BE),
+                                    mt76_connac_lmac_mapping(IEEE80211_AC_BE),
                                     aifsn, cw, cw, 0);
 }
 
 
                sta = container_of((void *)msta, struct ieee80211_sta,
                                   drv_priv);
                for (i = 0; i < IEEE80211_NUM_ACS; i++) {
-                       u8 q = mt7921_lmac_mapping(dev, i);
+                       u8 q = mt76_connac_lmac_mapping(i);
                        u32 tx_cur = tx_time[q];
                        u32 rx_cur = rx_time[q];
                        u8 tid = ac_to_tid[i];
        } else {
                p_fmt = is_mmio ? MT_TX_TYPE_CT : MT_TX_TYPE_SF;
                q_idx = wmm_idx * MT7921_MAX_WMM_SETS +
-                       mt7921_lmac_mapping(dev, skb_get_queue_mapping(skb));
+                       mt76_connac_lmac_mapping(skb_get_queue_mapping(skb));
        }
 
        val = FIELD_PREP(MT_TXD0_TX_BYTES, skb->len + sz_txd) |
 
 mt7921_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif, u16 queue,
               const struct ieee80211_tx_queue_params *params)
 {
-       struct mt7921_dev *dev = mt7921_hw_dev(hw);
        struct mt7921_vif *mvif = (struct mt7921_vif *)vif->drv_priv;
 
        /* no need to update right away, we'll get BSS_CHANGED_QOS */
-       queue = mt7921_lmac_mapping(dev, queue);
+       queue = mt76_connac_lmac_mapping(queue);
        mvif->queue_params[queue] = *params;
 
        return 0;
 
 #define mt7921_mutex_release(dev)      \
        mt76_connac_mutex_release(&(dev)->mt76, &(dev)->pm)
 
-static inline u8 mt7921_lmac_mapping(struct mt7921_dev *dev, u8 ac)
-{
-       /* LMAC uses the reverse order of mac80211 AC indexes */
-       return 3 - ac;
-}
-
 extern const struct ieee80211_ops mt7921_ops;
 extern struct pci_driver mt7921_pci_driver;