]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
wifi: mt76: mt7603: fix mixed declarations and code
authorFelix Fietkau <nbd@nbd.name>
Tue, 27 Aug 2024 09:29:48 +0000 (11:29 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 4 Oct 2024 14:32:27 +0000 (16:32 +0200)
[ Upstream commit 9b8d932053b8b45d650360b36f701cf0f9b6470e ]

Move the qid variable declaration further up

Fixes: b473c0e47f04 ("wifi: mt76: mt7603: fix tx queue of loopback packets")
Link: https://patch.msgid.link/20240827093011.18621-1-nbd@nbd.name
Signed-off-by: Felix Fietkau <nbd@nbd.name>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/wireless/mediatek/mt76/mt7603/dma.c

index 14304b0637158898e42fba8ab85ee27733dfcf85..e238161dfaa971d7ecd180482fa54a44be05209c 100644 (file)
@@ -29,7 +29,7 @@ mt7603_rx_loopback_skb(struct mt7603_dev *dev, struct sk_buff *skb)
        struct ieee80211_sta *sta;
        struct mt7603_sta *msta;
        struct mt76_wcid *wcid;
-       u8 tid = 0, hwq = 0;
+       u8 qid, tid = 0, hwq = 0;
        void *priv;
        int idx;
        u32 val;
@@ -57,7 +57,7 @@ mt7603_rx_loopback_skb(struct mt7603_dev *dev, struct sk_buff *skb)
        if (ieee80211_is_data_qos(hdr->frame_control)) {
                tid = *ieee80211_get_qos_ctl(hdr) &
                         IEEE80211_QOS_CTL_TAG1D_MASK;
-               u8 qid = tid_to_ac[tid];
+               qid = tid_to_ac[tid];
                hwq = wmm_queue_map[qid];
                skb_set_queue_mapping(skb, qid);
        } else if (ieee80211_is_data(hdr->frame_control)) {