mwlwifi: disable A-MSDU (#4030)

Co-authored-by: LGA1150 <dqfext@gmail.com>
This commit is contained in:
AmadeusGhost 2020-03-26 18:32:43 +08:00 committed by GitHub
parent 8022677a10
commit 5b588615d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,11 @@
--- a/core.c
+++ b/core.c
@@ -982,7 +982,7 @@ struct ieee80211_hw *mwl_alloc_hw(int bu
priv->use_short_preamble = false;
priv->disable_2g = false;
priv->disable_5g = false;
- priv->tx_amsdu = true;
+ priv->tx_amsdu = false;
priv->hif.bus = bus_type;
priv->hif.ops = ops;
priv->hif.priv = (char *)priv + ALIGN(sizeof(*priv), NETDEV_ALIGN);