diff options
author | 2021-10-16 17:32:42 +0200 | |
---|---|---|
committer | 2021-10-20 11:51:21 +0300 | |
commit | a8a8fc7b2a7132a0b61adabd85d8c57d2ce0185f (patch) | |
tree | 2783a12d0cd8b3d65ee7286fd711ed8cb23728ad | |
parent | mwifiex: Log an error on command failure during key-material upload (diff) | |
download | wireguard-linux-a8a8fc7b2a7132a0b61adabd85d8c57d2ce0185f.tar.xz wireguard-linux-a8a8fc7b2a7132a0b61adabd85d8c57d2ce0185f.zip |
mwifiex: Fix an incorrect comment
We're sending DELBA requests here, not ADDBA requests.
Signed-off-by: Jonas Dreßler <verdre@v0yd.nl>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20211016153244.24353-4-verdre@v0yd.nl
-rw-r--r-- | drivers/net/wireless/marvell/mwifiex/11n.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/marvell/mwifiex/11n.c b/drivers/net/wireless/marvell/mwifiex/11n.c index 6696bce56178..b0695432b26a 100644 --- a/drivers/net/wireless/marvell/mwifiex/11n.c +++ b/drivers/net/wireless/marvell/mwifiex/11n.c @@ -125,7 +125,7 @@ int mwifiex_ret_11n_delba(struct mwifiex_private *priv, tx_ba_tbl->ra); } else { /* * In case of failure, recreate the deleted stream in case - * we initiated the ADDBA + * we initiated the DELBA */ if (!INITIATOR_BIT(del_ba_param_set)) return 0; |