Commit f2f6a47b authored by Felix Fietkau's avatar Felix Fietkau

mt76: fix resetting software IV flag on key delete

It needs to be unset instead of set

Fixes: 23405236 ("mt76: fix transmission of encrypted management frames")
Signed-off-by: default avatarFelix Fietkau <nbd@nbd.name>
parent 906d2d3f
......@@ -431,7 +431,7 @@ int mt76x02_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
} else {
if (idx == wcid->hw_key_idx) {
wcid->hw_key_idx = -1;
wcid->sw_iv = true;
wcid->sw_iv = false;
}
key = NULL;
......
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