Commit 820e4da1 authored by Felix Fietkau's avatar Felix Fietkau

mt76: mt7603: fix invalid fallback rates

Only decrement the rate index on duplicate rates if it is not already 0
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent f4635f66
......@@ -639,6 +639,9 @@ void mt7603_wtbl_set_rates(struct mt7603_dev *dev, struct mt7603_sta *sta,
IEEE80211_TX_RC_40_MHZ_WIDTH)
continue;
if (!rates[i].idx)
continue;
rates[i].idx--;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment