u8 mmps_mode;
 } __packed;
 
+struct sta_rec_tx_proc {
+       __le16 tag;
+       __le16 len;
+       __le32 flag;
+} __packed;
+
 /* wtbl_rec */
 
 struct wtbl_req_hdr {
                                         sizeof(struct sta_rec_ra_fixed) + \
                                         sizeof(struct sta_rec_he_6g_capa) + \
                                         sizeof(struct sta_rec_pn_info) + \
+                                        sizeof(struct sta_rec_tx_proc) + \
                                         sizeof(struct tlv) +           \
                                         MT76_CONNAC_WTBL_UPDATE_MAX_SIZE)
 
 
        bfee->fb_identity_matrix = (nrow == 1 && tx_ant == 2);
 }
 
+static void
+mt7996_mcu_sta_tx_proc_tlv(struct sk_buff *skb)
+{
+       struct sta_rec_tx_proc *tx_proc;
+       struct tlv *tlv;
+
+       tlv = mt76_connac_mcu_add_tlv(skb, STA_REC_TX_PROC, sizeof(*tx_proc));
+
+       tx_proc = (struct sta_rec_tx_proc *)tlv;
+       tx_proc->flag = cpu_to_le32(0);
+}
+
 static void
 mt7996_mcu_sta_hdrt_tlv(struct mt7996_dev *dev, struct sk_buff *skb)
 {
 
        /* starec hdr trans */
        mt7996_mcu_sta_hdr_trans_tlv(dev, skb, vif, sta);
+       /* starec tx proc */
+       mt7996_mcu_sta_tx_proc_tlv(skb);
 
        /* tag order is in accordance with firmware dependency. */
        if (sta) {